From bd6729dd08ff0022f4e9c0ea187115ee1c0cb8e8 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Thu, 28 Apr 2011 13:27:42 +0200 Subject: [PATCH] wnaspi32: Mark internal symbols as hidden. --- dlls/wnaspi32/winescsi.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dlls/wnaspi32/winescsi.h b/dlls/wnaspi32/winescsi.h index be1d5f6c1f3..9d542bdb638 100644 --- a/dlls/wnaspi32/winescsi.h +++ b/dlls/wnaspi32/winescsi.h @@ -57,30 +57,30 @@ struct sg_header /* Function prototypes from dlls/wnaspi32/aspi.c */ void -SCSI_Init(void); +SCSI_Init(void) DECLSPEC_HIDDEN; int -ASPI_GetNumControllers(void); +ASPI_GetNumControllers(void) DECLSPEC_HIDDEN; int -SCSI_OpenDevice( int h, int c, int t, int d ); +SCSI_OpenDevice( int h, int c, int t, int d ) DECLSPEC_HIDDEN; int -SCSI_LinuxSetTimeout( int fd, int timeout ); +SCSI_LinuxSetTimeout( int fd, int timeout ) DECLSPEC_HIDDEN; #ifdef linux BOOL SCSI_LinuxDeviceIo( int fd, struct sg_header * lpvInBuffer, DWORD cbInBuffer, struct sg_header * lpvOutBuffer, DWORD cbOutBuffer, - LPDWORD lpcbBytesReturned ); + LPDWORD lpcbBytesReturned ) DECLSPEC_HIDDEN; void -SCSI_Fix_CMD_LEN( int fd, int cmd, int len ); +SCSI_Fix_CMD_LEN( int fd, int cmd, int len ) DECLSPEC_HIDDEN; #endif DWORD -ASPI_GetHCforController( int controller ); +ASPI_GetHCforController( int controller ) DECLSPEC_HIDDEN; /*** This is where we throw some miscellaneous crap ***/