- Don't use dllexport for dxapi -- we have a .spec
authorStefan Ginsberg <stefanginsberg@gmail.com>
Fri, 7 Aug 2009 21:53:26 +0000 (21:53 +0000)
committerStefan Ginsberg <stefanginsberg@gmail.com>
Fri, 7 Aug 2009 21:53:26 +0000 (21:53 +0000)
svn path=/trunk/; revision=42486

reactos/drivers/directx/dxapi/main.c
reactos/include/ddk/ddkmapi.h

index 8b598f2..5bf9ec3 100644 (file)
@@ -45,8 +45,8 @@ GsDriverEntry(IN PVOID Context1,
 * none
 *
 *--*/
-DXAPI
-ULONG PASCAL
+ULONG
+PASCAL
 DxApiGetVersion()
 {
     /* MSDN say this always return Direct Sound version 4.02 */
@@ -98,8 +98,8 @@ DxApiGetVersion()
 *
 *--*/
 
-DXAPI
-DWORD PASCAL
+DWORD
+PASCAL
 DxApi(IN DWORD dwFunctionNum,
       IN LPVOID lpvInBuffer,
       IN DWORD cbInBuffer,
index cd7f622..88d52ec 100644 (file)
@@ -23,7 +23,7 @@
 
 
 #if defined(_DXAPI_)
-  #define DXAPI DECLSPEC_EXPORT
+  #define DXAPI
 #else
   #define DXAPI DECLSPEC_IMPORT
 #endif