Commit acbba11c authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

wnaspi32: Declare some functions static.

parent 0194b8f0
...@@ -148,7 +148,7 @@ int ASPI_GetNumControllers(void) ...@@ -148,7 +148,7 @@ int ASPI_GetNumControllers(void)
return num_ha; 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]; char buffer[200];
HKEY hkeyScsi; HKEY hkeyScsi;
......
...@@ -385,7 +385,7 @@ WORD WINAPI GetASPISupportInfo16(void) ...@@ -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 #ifdef linux
LPSRB16 lpSRB = PTR_TO_LIN( ptrSRB, mode ); LPSRB16 lpSRB = PTR_TO_LIN( ptrSRB, mode );
......
...@@ -79,9 +79,6 @@ void ...@@ -79,9 +79,6 @@ void
SCSI_Fix_CMD_LEN( int fd, int cmd, int len ); SCSI_Fix_CMD_LEN( int fd, int cmd, int len );
#endif #endif
BOOL
SCSI_GetDeviceName(int h, int c, int t, int d, LPSTR devstr, LPDWORD lpcbData);
DWORD DWORD
ASPI_GetHCforController( int controller ); ASPI_GetHCforController( int controller );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment