APPMEM.H
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- /*++
- Copyright (C) 1995-1997 Microsoft Corporation
- Module Name:
- appmem.h
- Abstract:
- function prototypes and definitions for applications using the
- application memory performance counters
- Revision History
- 30 Aug 1995 Bob Watson (a-robw) Created
- --*/
- #ifndef _APPMEM_H_
- #define _APPMEM_H_
- #ifdef __cplusplus
- extern "C" {
- #endif
- HGLOBAL
- GlobalAllocP (
- UINT fuFlags,
- DWORD cbBytes
- );
- HGLOBAL
- GlobalFreeP (
- HGLOBAL hglbMem
- );
- HGLOBAL
- GlobalReAllocP (
- HGLOBAL hglbMem,
- DWORD cbBytes,
- UINT fuFlags
- );
- #ifdef __cplusplus
- }
- #endif
- #endif // _APPMEM_H_