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

Alexandre Julliard julliard at winehq.org
Tue Nov 25 07:21:21 CST 2008


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

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Mon Nov 24 17:24:38 2008 +0100

version: Remove WINAPI on static functions where not needed.

---

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

diff --git a/dlls/version/info.c b/dlls/version/info.c
index cad3251..6036f38 100644
--- a/dlls/version/info.c
+++ b/dlls/version/info.c
@@ -676,7 +676,7 @@ static const VS_VERSION_INFO_STRUCT32 *VersionInfo32_FindChild( const VS_VERSION
  *
  *    Gets a value from a 16-bit NE resource
  */
-static BOOL WINAPI VersionInfo16_QueryValue( const VS_VERSION_INFO_STRUCT16 *info, LPCSTR lpSubBlock,
+static BOOL VersionInfo16_QueryValue( const VS_VERSION_INFO_STRUCT16 *info, LPCSTR lpSubBlock,
                                LPVOID *lplpBuffer, UINT *puLen )
 {
     while ( *lpSubBlock )
@@ -720,7 +720,7 @@ static BOOL WINAPI VersionInfo16_QueryValue( const VS_VERSION_INFO_STRUCT16 *inf
  *
  *    Gets a value from a 32-bit PE resource
  */
-static BOOL WINAPI VersionInfo32_QueryValue( const VS_VERSION_INFO_STRUCT32 *info, LPCWSTR lpSubBlock,
+static BOOL VersionInfo32_QueryValue( const VS_VERSION_INFO_STRUCT32 *info, LPCWSTR lpSubBlock,
                                LPVOID *lplpBuffer, UINT *puLen )
 {
     TRACE("lpSubBlock : (%s)\n", debugstr_w(lpSubBlock));




More information about the wine-cvs mailing list