removed __declspec
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18867 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -62,11 +62,11 @@ static int32 gOpenMask = 0;
|
|||||||
|
|
||||||
|
|
||||||
/* Driver Entry Points */
|
/* Driver Entry Points */
|
||||||
__declspec(dllexport) status_t init_hardware(void);
|
status_t init_hardware(void);
|
||||||
__declspec(dllexport) status_t init_driver(void);
|
status_t init_driver(void);
|
||||||
__declspec(dllexport) void uninit_driver(void);
|
void uninit_driver(void);
|
||||||
__declspec(dllexport) const char** publish_devices(void);
|
const char** publish_devices(void);
|
||||||
__declspec(dllexport) device_hooks *find_device(const char *name);
|
device_hooks *find_device(const char *name);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -28,10 +28,10 @@
|
|||||||
/*
|
/*
|
||||||
* Standard Driver Entry Functions
|
* Standard Driver Entry Functions
|
||||||
*/
|
*/
|
||||||
__declspec(dllexport) status_t init_driver (void);
|
status_t init_driver (void);
|
||||||
__declspec(dllexport) void uninit_driver (void);
|
void uninit_driver (void);
|
||||||
__declspec(dllexport) const char **publish_devices(void);
|
const char **publish_devices(void);
|
||||||
__declspec(dllexport) device_hooks *find_device (const char *name);
|
device_hooks *find_device (const char *name);
|
||||||
|
|
||||||
char *pDevNameList[MAX_CARDS+1];
|
char *pDevNameList[MAX_CARDS+1];
|
||||||
pci_info *pDevList [MAX_CARDS+1];
|
pci_info *pDevList [MAX_CARDS+1];
|
||||||
|
|||||||
Reference in New Issue
Block a user