diff options
author | Robert Collins <rbtcollins@hotmail.com> | 2002-01-11 10:23:20 +0000 |
---|---|---|
committer | Robert Collins <rbtcollins@hotmail.com> | 2002-01-11 10:23:20 +0000 |
commit | 175f01bc175fc0bc700426a23709596a629cf9c8 (patch) | |
tree | 7132ffedc667300219de1ddd44c6832b6d8b9b9e /winsup/w32api/include/rapi.h | |
parent | f827d65e12435f5f8d48cdbffce3e5b6b2a4fd45 (diff) | |
download | cygnal-175f01bc175fc0bc700426a23709596a629cf9c8.tar.gz cygnal-175f01bc175fc0bc700426a23709596a629cf9c8.tar.bz2 cygnal-175f01bc175fc0bc700426a23709596a629cf9c8.zip |
2002-01-11 Ralf Habacker <Ralf.Habacker@freenet.de>
* include/ntsecapi.h: Fixed missing void parameter type in some prototypes.
* include/objbase.h: Ditto.
* include/rapi.h: Ditto.
* include/rpc.h: Ditto.
* include/rpcdce.h: Ditto.
* include/rpcdcep.h: Ditto.
* include/rpcndr.h: Ditto.
* include/rpcnsip.h: Ditto.
* include/rpcproxy.h: Ditto.
* include/windef.h: Ditto.
Diffstat (limited to 'winsup/w32api/include/rapi.h')
-rw-r--r-- | winsup/w32api/include/rapi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/w32api/include/rapi.h b/winsup/w32api/include/rapi.h index 581fc8e6a..1bc74db6c 100644 --- a/winsup/w32api/include/rapi.h +++ b/winsup/w32api/include/rapi.h @@ -35,11 +35,11 @@ typedef struct _RAPIINIT HRESULT hrRapiInit; } RAPIINIT; -STDAPI CeRapiInit (); +STDAPI CeRapiInit (void); STDAPI CeRapiInitEx (RAPIINIT*); STDAPI_(BOOL) CeCreateProcess (LPCWSTR, LPCWSTR, LPSECURITY_ATTRIBUTES, LPSECURITY_ATTRIBUTES, BOOL, DWORD, LPVOID, LPWSTR, LPSTARTUPINFO, LPPROCESS_INFORMATION); -STDAPI CeRapiUninit (); +STDAPI CeRapiUninit (void); STDAPI_(BOOL) CeWriteFile (HANDLE, LPCVOID, DWORD, LPDWORD, LPOVERLAPPED); STDAPI_(HANDLE) CeCreateFile (LPCWSTR, DWORD, DWORD, LPSECURITY_ATTRIBUTES, DWORD, DWORD, HANDLE); |