wnaspi32: Declare some functions static.

This commit is contained in:
Andrew Talbot 2009-02-02 15:29:54 +00:00 committed by Alexandre Julliard
parent 0194b8f08c
commit acbba11c49
3 changed files with 2 additions and 5 deletions

View File

@ -148,7 +148,7 @@ int ASPI_GetNumControllers(void)
return num_ha;
}
BOOL SCSI_GetDeviceName( int h, int c, int t, int d, LPSTR devstr, LPDWORD lpcbData )
static BOOL SCSI_GetDeviceName( int h, int c, int t, int d, LPSTR devstr, LPDWORD lpcbData )
{
char buffer[200];
HKEY hkeyScsi;

View File

@ -385,7 +385,7 @@ WORD WINAPI GetASPISupportInfo16(void)
}
DWORD ASPI_SendASPICommand(DWORD ptrSRB, UINT16 mode)
static DWORD ASPI_SendASPICommand(DWORD ptrSRB, UINT16 mode)
{
#ifdef linux
LPSRB16 lpSRB = PTR_TO_LIN( ptrSRB, mode );

View File

@ -79,9 +79,6 @@ void
SCSI_Fix_CMD_LEN( int fd, int cmd, int len );
#endif
BOOL
SCSI_GetDeviceName(int h, int c, int t, int d, LPSTR devstr, LPDWORD lpcbData);
DWORD
ASPI_GetHCforController( int controller );