wnaspi32: Declare some functions static.
This commit is contained in:
parent
0194b8f08c
commit
acbba11c49
|
@ -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;
|
||||
|
|
|
@ -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 );
|
||||
|
|
|
@ -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 );
|
||||
|
||||
|
|
Loading…
Reference in New Issue