2000-03-30 Mumit Khan <khan@xraylith.wisc.edu>
* include/ole.h: Workaround for C++ parser bug. * include/rpcdcep.h: Likewise. * include/winsock.h: Likewise.
This commit is contained in:
		| @@ -1,3 +1,9 @@ | |||||||
|  | 2000-03-30  Mumit Khan  <khan@xraylith.wisc.edu> | ||||||
|  |  | ||||||
|  | 	* include/ole.h: Workaround for C++ parser bug. | ||||||
|  | 	* include/rpcdcep.h: Likewise. | ||||||
|  | 	* include/winsock.h: Likewise. | ||||||
|  |  | ||||||
| Sun Mar 26 13:41:47 2000  Christopher Faylor <cgf@cygnus.com> | Sun Mar 26 13:41:47 2000  Christopher Faylor <cgf@cygnus.com> | ||||||
|  |  | ||||||
| 	* include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs. | 	* include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs. | ||||||
|   | |||||||
| @@ -252,7 +252,7 @@ OLESTATUS WINAPI OleUpdate(LPOLEOBJECT); | |||||||
| OLESTATUS WINAPI OleReconnect(LPOLEOBJECT); | OLESTATUS WINAPI OleReconnect(LPOLEOBJECT); | ||||||
| OLESTATUS WINAPI OleGetLinkUpdateOptions(LPOLEOBJECT,OLEOPT_UPDATE*); | OLESTATUS WINAPI OleGetLinkUpdateOptions(LPOLEOBJECT,OLEOPT_UPDATE*); | ||||||
| OLESTATUS WINAPI OleSetLinkUpdateOptions(LPOLEOBJECT,OLEOPT_UPDATE); | OLESTATUS WINAPI OleSetLinkUpdateOptions(LPOLEOBJECT,OLEOPT_UPDATE); | ||||||
| void *WINAPI OleQueryProtocol(LPOLEOBJECT,LPCSTR); | WINAPI void *OleQueryProtocol(LPOLEOBJECT,LPCSTR); | ||||||
| OLESTATUS WINAPI OleQueryReleaseStatus(LPOLEOBJECT); | OLESTATUS WINAPI OleQueryReleaseStatus(LPOLEOBJECT); | ||||||
| OLESTATUS WINAPI OleQueryReleaseError(LPOLEOBJECT); | OLESTATUS WINAPI OleQueryReleaseError(LPOLEOBJECT); | ||||||
| OLE_RELEASE_METHOD WINAPI OleQueryReleaseMethod(LPOLEOBJECT); | OLE_RELEASE_METHOD WINAPI OleQueryReleaseMethod(LPOLEOBJECT); | ||||||
|   | |||||||
| @@ -81,7 +81,7 @@ long __stdcall I_RpcFreeBuffer(RPC_MESSAGE*); | |||||||
| void __stdcall I_RpcRequestMutex(I_RPC_MUTEX*); | void __stdcall I_RpcRequestMutex(I_RPC_MUTEX*); | ||||||
| void __stdcall I_RpcClearMutex(I_RPC_MUTEX); | void __stdcall I_RpcClearMutex(I_RPC_MUTEX); | ||||||
| void __stdcall I_RpcDeleteMutex(I_RPC_MUTEX); | void __stdcall I_RpcDeleteMutex(I_RPC_MUTEX); | ||||||
| void* __stdcall I_RpcAllocate(unsigned int); | __stdcall void *I_RpcAllocate(unsigned int); | ||||||
| void __stdcall I_RpcFree(void*); | void __stdcall I_RpcFree(void*); | ||||||
| void __stdcall I_RpcPauseExecution(unsigned long); | void __stdcall I_RpcPauseExecution(unsigned long); | ||||||
| typedef void(__stdcall *PRPC_RUNDOWN) (void*); | typedef void(__stdcall *PRPC_RUNDOWN) (void*); | ||||||
|   | |||||||
| @@ -430,7 +430,7 @@ int PASCAL getpeername(SOCKET,struct sockaddr*,int*); | |||||||
| int PASCAL getsockname(SOCKET,struct sockaddr*,int*); | int PASCAL getsockname(SOCKET,struct sockaddr*,int*); | ||||||
| int PASCAL getsockopt(SOCKET,int,int,char*,int*); | int PASCAL getsockopt(SOCKET,int,int,char*,int*); | ||||||
| unsigned long PASCAL inet_addr(const char*); | unsigned long PASCAL inet_addr(const char*); | ||||||
| char * PASCAL inet_ntoa(struct in_addr); | PASCAL char *inet_ntoa(struct in_addr); | ||||||
| int PASCAL listen(SOCKET,int); | int PASCAL listen(SOCKET,int); | ||||||
| int PASCAL recv(SOCKET,char*,int,int); | int PASCAL recv(SOCKET,char*,int,int); | ||||||
| int PASCAL recvfrom(SOCKET,char*,int,int,struct sockaddr*,int*); | int PASCAL recvfrom(SOCKET,char*,int,int,struct sockaddr*,int*); | ||||||
| @@ -439,12 +439,12 @@ int PASCAL sendto(SOCKET,const char*,int,int,const struct sockaddr*,int); | |||||||
| int PASCAL setsockopt(SOCKET,int,int,const char*,int); | int PASCAL setsockopt(SOCKET,int,int,const char*,int); | ||||||
| int PASCAL shutdown(SOCKET,int); | int PASCAL shutdown(SOCKET,int); | ||||||
| SOCKET PASCAL socket(int,int,int); | SOCKET PASCAL socket(int,int,int); | ||||||
| struct hostent* PASCAL gethostbyaddr(const char*,int,int); | PASCAL struct hostent *gethostbyaddr(const char*,int,int); | ||||||
| struct hostent* PASCAL gethostbyname(const char*); | PASCAL struct hostent *gethostbyname(const char*); | ||||||
| struct servent* PASCAL getservbyport(int,const char*); | PASCAL struct servent *getservbyport(int,const char*); | ||||||
| struct servent* PASCAL getservbyname(const char*,const char*); | PASCAL struct servent *getservbyname(const char*,const char*); | ||||||
| struct protoent* PASCAL getprotobynumber(int); | PASCAL struct protoent *getprotobynumber(int); | ||||||
| struct protoent* PASCAL getprotobyname(const char*); | PASCAL struct protoent *getprotobyname(const char*); | ||||||
| int PASCAL WSAStartup(WORD,LPWSADATA); | int PASCAL WSAStartup(WORD,LPWSADATA); | ||||||
| int PASCAL WSACleanup(void); | int PASCAL WSACleanup(void); | ||||||
| void PASCAL WSASetLastError(int); | void PASCAL WSASetLastError(int); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user