CChkSGFiles.Delete function
Last modified: February 22, 2013
Applies to: Exchange Server 2003 | Exchange Server 2007 | Exchange Server 2010 | Exchange Server 2013
Destroys an existing instance of the CChkSGFiles class. You must call this function after the application has finished working with the specified object.
Static VOID __stdcall Delete
(
CCheckSGFiles * pcchecksgfiles
);
The Delete function frees the memory associated with the CCheckSGFiles object. After you call Delete, the pointer passed in the pcchecksgfiles parameter will be invalid and no other operations can be performed on that object.
If the application uses the ErrCheckDbPages function, the application must free the memory buffer manually; the Delete function will not free it.
If you're using CHKSGFILES in a multithreaded application, you must call the Delete function in the single-threaded portion of the application, and you can call it only once for each CCheckSGFiles object.