Francois Gouget : netapi32: Remove WINAPI on static functions where not needed.

Alexandre Julliard julliard at winehq.org
Wed Nov 20 13:38:54 CST 2013


Module: wine
Branch: master
Commit: 19d8c27d12948e8a9b1c9fd78fc45d3e2b2ab37c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=19d8c27d12948e8a9b1c9fd78fc45d3e2b2ab37c

Author: Francois Gouget <fgouget at free.fr>
Date:   Wed Nov 20 09:55:57 2013 +0100

netapi32: Remove WINAPI on static functions where not needed.

---

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

diff --git a/dlls/netapi32/netapi32.c b/dlls/netapi32/netapi32.c
index 68d8872..74635dc 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 )
+static NET_API_STATUS share_del( LMSTR servername, LMSTR netname, DWORD reserved )
 {
     ERR( "\n" );
     return ERROR_NOT_SUPPORTED;




More information about the wine-cvs mailing list