Diff

Not logged in

Differences From Artifact [31686aa542bfe49a]:

To Artifact [70d972547cb509ad]:


4 * Windows API header module * 4 * Windows API header module * 5 * * 5 * * 6 * Translated from MinGW Windows headers * 6 * Translated from MinGW Windows headers * 7 * * 7 * * 8 * Placed into public domain * 8 * Placed into public domain * 9 \***********************************************************************/ 9 \***********************************************************************/ 10 module win32.lmapibuf; 10 module win32.lmapibuf; 11 pragma(lib, "netapi32.lib"); | 11 pragma(lib, "netapi32"); 12 12 13 private import win32.lmcons, win32.windef; 13 private import win32.lmcons, win32.windef; 14 14 15 extern (Windows) { 15 extern (Windows) { 16 NET_API_STATUS NetApiBufferAllocate(DWORD, PVOID*); 16 NET_API_STATUS NetApiBufferAllocate(DWORD, PVOID*); 17 NET_API_STATUS NetApiBufferFree(PVOID); 17 NET_API_STATUS NetApiBufferFree(PVOID); 18 NET_API_STATUS NetApiBufferReallocate(PVOID, DWORD, PVOID*); 18 NET_API_STATUS NetApiBufferReallocate(PVOID, DWORD, PVOID*); 19 NET_API_STATUS NetApiBufferSize(PVOID, PDWORD); 19 NET_API_STATUS NetApiBufferSize(PVOID, PDWORD); 20 NET_API_STATUS NetapipBufferAllocate(DWORD, PVOID*); 20 NET_API_STATUS NetapipBufferAllocate(DWORD, PVOID*); 21 } 21 }