version: Remove WINAPI on static functions where not needed.

This commit is contained in:
Francois Gouget 2008-11-24 17:24:38 +01:00 committed by Alexandre Julliard
parent ec6f88b5c4
commit 0ee5d57079
1 changed files with 2 additions and 2 deletions

View File

@ -676,7 +676,7 @@ static const VS_VERSION_INFO_STRUCT32 *VersionInfo32_FindChild( const VS_VERSION
* *
* Gets a value from a 16-bit NE resource * 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 ) LPVOID *lplpBuffer, UINT *puLen )
{ {
while ( *lpSubBlock ) 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 * 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 ) LPVOID *lplpBuffer, UINT *puLen )
{ {
TRACE("lpSubBlock : (%s)\n", debugstr_w(lpSubBlock)); TRACE("lpSubBlock : (%s)\n", debugstr_w(lpSubBlock));