mirror of https://github.com/buggins/dlangui.git
23 lines
1.1 KiB
D
23 lines
1.1 KiB
D
/***********************************************************************\
|
|
* lmapibuf.d *
|
|
* *
|
|
* Windows API header module *
|
|
* *
|
|
* Translated from MinGW Windows headers *
|
|
* *
|
|
* Placed into public domain *
|
|
\***********************************************************************/
|
|
module win32.lmapibuf;
|
|
version(Windows):
|
|
pragma(lib, "netapi32");
|
|
|
|
private import win32.lmcons, win32.windef;
|
|
|
|
extern (Windows) {
|
|
NET_API_STATUS NetApiBufferAllocate(DWORD, PVOID*);
|
|
NET_API_STATUS NetApiBufferFree(PVOID);
|
|
NET_API_STATUS NetApiBufferReallocate(PVOID, DWORD, PVOID*);
|
|
NET_API_STATUS NetApiBufferSize(PVOID, PDWORD);
|
|
NET_API_STATUS NetapipBufferAllocate(DWORD, PVOID*);
|
|
}
|