mirror of https://github.com/tongzx/nt5src
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.
27 lines
562 B
27 lines
562 B
/*** Creatf.H - Function declarations/defines for CreatF.C routines.
|
|
*
|
|
*
|
|
* Title:
|
|
* Creatf external function declarations/defines
|
|
*
|
|
* Copyright (c) 1993, Microsoft Corporation.
|
|
* HonWah Chan.
|
|
*
|
|
*
|
|
* Modification History:
|
|
* 93.5.17 HonWah Chan -- created
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
/* * * * E x t e r n a l F u n c t i o n D e c l a r a t i o n s * * * */
|
|
|
|
extern BOOL Failed (RC rc, LPSTR lpstrFname, WORD lineno, LPSTR lpstrMsg);
|
|
|
|
extern void DisplayUsage (void);
|
|
|
|
extern LPVOID MemoryAllocate (DWORD dwSize);
|
|
|
|
extern VOID MemoryFree (LPVOID lpMemory);
|
|
|