netapi32: Remove WINAPI on static functions where not needed.

Francois Gouget fgouget at free.fr
Wed Nov 20 02:55:57 CST 2013


---
 dlls/netapi32/netapi32.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/netapi32/netapi32.c b/dlls/netapi32/netapi32.c
index 68d8872..4ccfa09 100644
--- a/dlls/netapi32/netapi32.c
+++ b/dlls/netapi32/netapi32.c
@@ -314,7 +314,7 @@ static NET_API_STATUS share_add( LMSTR servername, DWORD level, LPBYTE buf, LPDW
     return status;
 }
 
-static NET_API_STATUS WINAPI share_del( LMSTR servername, LMSTR netname, DWORD reserved )
+static NET_API_STATUS share_del( LMSTR servername, LMSTR netname, DWORD reserved )
 {
     char *server = NULL, *share;
     NET_API_STATUS status;
@@ -419,7 +419,7 @@ static NET_API_STATUS share_add( LMSTR servername, DWORD level, LPBYTE buf, LPDW
     ERR( "\n" );
     return ERROR_NOT_SUPPORTED;
 }
-NET_API_STATUS WINAPI share_del( LMSTR servername, LMSTR netname, DWORD reserved )
+NET_API_STATUS share_del( LMSTR servername, LMSTR netname, DWORD reserved )
 {
     ERR( "\n" );
     return ERROR_NOT_SUPPORTED;
-- 
1.8.4.2




More information about the wine-patches mailing list