removed __declspec

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18867 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Marcus Overhagen 2006-09-16 22:44:35 +00:00
parent 274b450ab8
commit 0ff6a5fd11
2 changed files with 9 additions and 9 deletions

View File

@ -62,11 +62,11 @@ static int32 gOpenMask = 0;
/* Driver Entry Points */
__declspec(dllexport) status_t init_hardware(void);
__declspec(dllexport) status_t init_driver(void);
__declspec(dllexport) void uninit_driver(void);
__declspec(dllexport) const char** publish_devices(void);
__declspec(dllexport) device_hooks *find_device(const char *name);
status_t init_hardware(void);
status_t init_driver(void);
void uninit_driver(void);
const char** publish_devices(void);
device_hooks *find_device(const char *name);

View File

@ -28,10 +28,10 @@
/*
* Standard Driver Entry Functions
*/
__declspec(dllexport) status_t init_driver (void);
__declspec(dllexport) void uninit_driver (void);
__declspec(dllexport) const char **publish_devices(void);
__declspec(dllexport) device_hooks *find_device (const char *name);
status_t init_driver (void);
void uninit_driver (void);
const char **publish_devices(void);
device_hooks *find_device (const char *name);
char *pDevNameList[MAX_CARDS+1];
pci_info *pDevList [MAX_CARDS+1];