From dce78c56fc54145520742d63def6804ece050c24 Mon Sep 17 00:00:00 2001 From: Stefan Ginsberg Date: Fri, 7 Aug 2009 21:53:26 +0000 Subject: [PATCH] - Don't use dllexport for dxapi -- we have a .spec svn path=/trunk/; revision=42486 --- reactos/drivers/directx/dxapi/main.c | 8 ++++---- reactos/include/ddk/ddkmapi.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/reactos/drivers/directx/dxapi/main.c b/reactos/drivers/directx/dxapi/main.c index 8b598f2c7fd..5bf9ec3d1bd 100644 --- a/reactos/drivers/directx/dxapi/main.c +++ b/reactos/drivers/directx/dxapi/main.c @@ -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, diff --git a/reactos/include/ddk/ddkmapi.h b/reactos/include/ddk/ddkmapi.h index cd7f6227165..88d52ecf6c0 100644 --- a/reactos/include/ddk/ddkmapi.h +++ b/reactos/include/ddk/ddkmapi.h @@ -23,7 +23,7 @@ #if defined(_DXAPI_) - #define DXAPI DECLSPEC_EXPORT + #define DXAPI #else #define DXAPI DECLSPEC_IMPORT #endif