Share

acedResolveInternetShortcut

C++

ACAD_PORT bool acedResolveInternetShortcut(
    const ACHAR* szLinkFile, 
    ACHAR* szUrl
);

File

acedinet.h

Description

Deprecated. This function accepts a path to an (MSIE-compatible) Internet shortcut file and extracts the URL from it (the inverse of acedCreateInternetShortcut()).

Note: This overload does not take a size arg and is deprecated. Use the other overload instead.

It is the caller's responsibility to ensure that szURL points to a sufficiently large buffer.

Returns Adesk::kTrue on success; Adesk::kFalse on failure.

Parameters

Parameters Description
szLinkFile Input filesystem path to the resulting shortcut
szUrl Output retrieved URL

Previous Declaration

ACAD_PORT Adesk::Boolean acedResolveInternetShortcut(const ACHAR* szLinkFile, ACHAR* szUrl);

Use Instead

ACAD_PORT bool acedResolveInternetShortcut(const ACHAR* szLinkFile, AcString & sUrl);

Was this information helpful?