CALL_ID Structure
Provides information to a debugger about a function that is being called. See the INotifySink2 interface for more information.
Syntax
typedef struct tagCALL_ID
{
LPCOLESTR szMachine;
DWORD dwPid;
USER_THREAD *pUserThread;
STACK_ADDRESS addrStackPointer;
LPCOLESTR szEntryPoint;
LPCOLESTR szDestinationMachine;
} CALL_ID;
Members
Member | Description |
---|---|
szMachine |
Identifies the machine that is making the call. |
dwPid |
Identifies the machine processor. |
pUserThread |
Identifies the thread that is executing the call. |
addrStackPointer |
Specifies the address of the call stack. |
szEntryPoint |
Specifies the address of the call. |
szDestinationMachine |
Identifies the machine that will execute the call. |
Requirements
Header: ProtocolNotify2.idl
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.