Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
Note
This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
Gets the debug address that follows a given debug address in a method.
Syntax
HRESULT GetNextAddress(
IDebugAddress* pAddress,
BOOL fStatementOnly,
IDebugAddress** ppAddress
);
int GetNextAddress(
IDebugAddress pAddress,
bool fStatementOnly,
out IDebugAddress ppAddress
);
Parameters
pAddress
[in] Given debug address.
fStatementOnly
[in] If TRUE, limits the debug addresses to a single statement.
ppAddress
[out] Returns the next debug address.
Return Value
Returns a valid HRESULT, typically S_OK.