BOOL HeapDestroy(HANDLE HandleTas);
#include <windows.h> #include <winbase.h> HANDLE HandleTas; HandleTas=HeapCreate(0, 0, 0); if (!HandleTas) { ... } ... if (!HeapDestroy(HandleTas)) { ... } ...