|
IMallocSpy::PostDidAlloc
Called just prior to invoking IMalloc::DidAlloc.
int PostDidAlloc(
void * pRequest
| //The original pointer passed to IMalloc::DidAlloc
| BOOL fSpyed
| //Indicates whether the allocation was done while this spy was active
| int fActual
| //Indicates whether pRequest was actual value used in IMalloc call
| );
|
|
Parameters
pRequest
The pointer specified in the original call to IMalloc::DidAlloc.
fSpyed
TRUE if the allocation was done while this spy was active.
fActual
The actual value returned by IMalloc::DidAlloc.
Return Value
The value returned to the caller of IMalloc::DidAlloc.
Comments
This method is included for completeness; it is not anticipated that
developers will implement significant functionality in this method.
For convenience, pRequest, the original pointer specified in the the call to IMalloc::DidAlloc is passed to PostDidAlloc, along with fActual, which is the actual value returned by IMalloc::DidAlloc called with the value returned by IMallocSpy::PreDidAlloc.
See Also
IMalloc::DidAlloc, IMallocSpy::PreDidAlloc, CoRegisterMallocSpy, CoRevokeMallocSpy
Related LinksSoftware for Delphi and C++ Builder developers Software for Visual Studio .NET developers Software for Visual Basic 6 developers Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps Win32 Programmer's Reference (win32.hlp) Win32 Multimedia Programmer's Reference (mmedia.hlp) Microsoft Windows Pen API Programmer's Reference (penapi.hlp) Microsoft Windows Sockets 2 Reference (sock2.hlp) Microsoft Windows Telephony API (TAPI) Programmer's Reference (sock2.hlp) Unix Manual Pages
|