Compile fixes for gcc 2.7.2.3.

This commit is contained in:
Stefan Leichter 2002-04-11 17:34:46 +00:00 committed by Alexandre Julliard
parent d5d431feae
commit f25efa0660
3 changed files with 7 additions and 7 deletions

View File

@ -20,23 +20,23 @@
#include "winbase.h"
/* this function is called by Internet Explorer when it is about to verify a downloaded component */
WINAPI BOOL I_CryptCreateLruCache(DWORD x, DWORD y)
BOOL WINAPI I_CryptCreateLruCache(DWORD x, DWORD y)
{
return FALSE;
}
/* these functions all have an unknown number of args */
WINAPI BOOL I_CryptFindLruEntryData(DWORD x)
BOOL WINAPI I_CryptFindLruEntryData(DWORD x)
{
return FALSE;
}
WINAPI BOOL I_CryptFlushLruCache(DWORD x)
BOOL WINAPI I_CryptFlushLruCache(DWORD x)
{
return FALSE;
}
WINAPI BOOL I_CryptFreeLruCache(DWORD x)
BOOL WINAPI I_CryptFreeLruCache(DWORD x)
{
return FALSE;
}

View File

@ -3460,7 +3460,7 @@ SOCKET WINAPI WSAAccept( SOCKET s, struct WS_sockaddr *addr, LPINT addrlen,
/***********************************************************************
* WSAEnumProtocolsA (WS2_32.37)
*/
WINAPI int WSAEnumProtocolsA(LPINT lpiProtocols, LPWSAPROTOCOL_INFOA lpProtocolBuffer, LPDWORD lpdwBufferLength)
int WINAPI WSAEnumProtocolsA(LPINT lpiProtocols, LPWSAPROTOCOL_INFOA lpProtocolBuffer, LPDWORD lpdwBufferLength)
{
FIXME("(%p,%p,%p): stub\n", lpiProtocols,lpProtocolBuffer, lpdwBufferLength);
return 0;
@ -3469,7 +3469,7 @@ WINAPI int WSAEnumProtocolsA(LPINT lpiProtocols, LPWSAPROTOCOL_INFOA lpProtocolB
/***********************************************************************
* WSAEnumProtocolsW (WS2_32.38)
*/
WINAPI int WSAEnumProtocolsW(LPINT lpiProtocols, LPWSAPROTOCOL_INFOW lpProtocolBuffer, LPDWORD lpdwBufferLength)
int WINAPI WSAEnumProtocolsW(LPINT lpiProtocols, LPWSAPROTOCOL_INFOW lpProtocolBuffer, LPDWORD lpdwBufferLength)
{
FIXME("(%p,%p,%p): stub\n", lpiProtocols,lpProtocolBuffer, lpdwBufferLength);
return 0;

View File

@ -79,7 +79,7 @@ static HANDLE dos_handles[DOS_TABLE_SIZE];
mode_t FILE_umask;
extern WINAPI HANDLE FILE_SmbOpen(LPCSTR name);
extern HANDLE WINAPI FILE_SmbOpen(LPCSTR name);
/***********************************************************************
* Asynchronous file I/O *