APPMEM.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*++
  2. Copyright (C) 1995-1997 Microsoft Corporation
  3. Module Name:
  4.     appmem.h
  5. Abstract:
  6.     function prototypes and definitions for applications using the 
  7.     application memory performance counters
  8. Revision History
  9.     30 Aug 1995     Bob Watson (a-robw)     Created
  10. --*/
  11. #ifndef _APPMEM_H_
  12. #define _APPMEM_H_
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. HGLOBAL
  17. GlobalAllocP (
  18.     UINT    fuFlags,
  19.     DWORD   cbBytes
  20. );
  21. HGLOBAL
  22. GlobalFreeP (
  23.     HGLOBAL hglbMem
  24. );
  25. HGLOBAL
  26. GlobalReAllocP (
  27.     HGLOBAL hglbMem,
  28.     DWORD   cbBytes,
  29.     UINT    fuFlags
  30. );
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif // _APPMEM_H_