Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*** mem.msg - Displayable strings for mem.c * * Microsoft Confidential * Copyright (C) Microsoft Corporation 1993-1994 * All Rights Reserved. * * Author: * Benjamin W. Slivka * * History: * 12-Aug-1993 bens Moved from strings.h */
//** Error Messages
#ifdef ASSERT
#define pszMEMERR_NULL_POINTER "Null Pointer in MemManager?" #define pszMEMERR_BAD_HEAD_SIG "Memory block head signature bad" #define pszMEMERR_BAD_TAIL_SIG "Memory block tail signature bad" #define pszMEMERR_OUT_OF_MEMORY "Out of memory!"
#endif // !ASSERT
|