mem.h
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:0k
源码类别:

打印编程

开发平台:

Visual C++

  1. /*++
  2. Copyright (c) 1990-2001 Microsoft Corporation
  3. All Rights Reserved
  4. Module Name:
  5.     mem.h
  6. --*/
  7. #ifndef _MEM_H_
  8. #define _MEM_H_
  9. LPWSTR
  10. AllocSplStr(
  11.     __in IN LPCWSTR pStr
  12.     );
  13. LPVOID
  14. AllocSplMem(
  15.     IN DWORD cbAlloc
  16.     );
  17. BOOL
  18. FreeSplStr(
  19.     __in    LPWSTR pStr
  20.     );
  21. BOOL
  22. FreeSplMem(
  23.     __in    PVOID pMem
  24.     );
  25. #endif // _MEM_H_