Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lmapibuf.h « include « w32api « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54de811068cd121c48f56439b162f82d86433a81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _LMAPIBUF_H
#define _LMAPIBUF_H
#if __GNUC__ >=3
#pragma GCC system_header
#endif

#ifdef __cplusplus
extern "C" {
#endif
NET_API_STATUS WINAPI NetApiBufferAllocate(DWORD,PVOID*);
NET_API_STATUS WINAPI NetApiBufferFree(PVOID);
NET_API_STATUS WINAPI NetApiBufferReallocate(PVOID,DWORD,PVOID*);
NET_API_STATUS WINAPI NetApiBufferSize(PVOID,PDWORD);
NET_API_STATUS WINAPI NetapipBufferAllocate(DWORD,PVOID*);
#ifdef __cplusplus
}
#endif
#endif