*NotifySync = NULL;
RealNotifySync = ExAllocatePoolWithTag(NonPagedPool | POOL_RAISE_IF_ALLOCATION_FAILURE,
- sizeof(REAL_NOTIFY_SYNC), TAG('F', 'S', 'N', 'S'));
+ sizeof(REAL_NOTIFY_SYNC), 'FSNS');
ExInitializeFastMutex(&(RealNotifySync->FastMutex));
RealNotifySync->OwningThread = 0;
RealNotifySync->OwnerCount = 0;
{
if (*NotifySync)
{
- ExFreePoolWithTag(*NotifySync, TAG('F', 'S', 'N', 'S'));
+ ExFreePoolWithTag(*NotifySync, 'FSNS');
*NotifySync = NULL;
}
}
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
*/
-#ifndef TAG
-#define TAG(w,x,y,z) (((w)<<24)|((x)<<16)|((y)<<8)|(z))
-#endif
-
//
// Define this if you want debugging support
//