Module: wine Branch: master Commit: 082147d906cc5db3f0cf901008da2849b4e6ebc6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=082147d906cc5db3f0cf901008...
Author: Francois Gouget fgouget@codeweavers.com Date: Wed May 6 03:43:50 2009 +0200
rpcrt4: Remove WINAPI on static functions where not needed.
---
dlls/rpcrt4/rpc_transport.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/rpcrt4/rpc_transport.c b/dlls/rpcrt4/rpc_transport.c index 390a7d4..d078d69 100644 --- a/dlls/rpcrt4/rpc_transport.c +++ b/dlls/rpcrt4/rpc_transport.c @@ -1808,7 +1808,7 @@ typedef struct _HttpTimerThreadData HANDLE timer_cancelled; } HttpTimerThreadData;
-static VOID CALLBACK rpcrt4_http_keep_connection_active_timer_proc(PVOID param, BOOLEAN dummy) +static VOID rpcrt4_http_keep_connection_active_timer_proc(PVOID param, BOOLEAN dummy) { HINTERNET in_request = param; RpcPktHdr *idle_pkt;