lmapibuf.h 723 B

12345678910111213141516171819202122
  1. /**
  2. * This file has no copyright assigned and is placed in the Public Domain.
  3. * This file is part of the mingw-w64 runtime package.
  4. * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  5. */
  6. #ifndef _LMAPIBUF_
  7. #define _LMAPIBUF_
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. NET_API_STATUS WINAPI NetApiBufferAllocate(DWORD ByteCount,LPVOID *Buffer);
  12. NET_API_STATUS WINAPI NetApiBufferFree(LPVOID Buffer);
  13. NET_API_STATUS WINAPI NetApiBufferReallocate(LPVOID OldBuffer,DWORD NewByteCount,LPVOID *NewBuffer);
  14. NET_API_STATUS WINAPI NetApiBufferSize(LPVOID Buffer,LPDWORD ByteCount);
  15. NET_API_STATUS WINAPI NetapipBufferAllocate(DWORD ByteCount,LPVOID *Buffer);
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif