2011-11-07 12:17:56 +01:00
|
|
|
/* Definitions for the VERsion info library (VER.DLL)
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
1999-05-29 13:15:39 +02:00
|
|
|
* Copyright 1996 Marcus Meissner
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1999-05-29 13:15:39 +02:00
|
|
|
*/
|
|
|
|
|
1999-02-09 16:46:25 +01:00
|
|
|
#ifndef __WINE_WINVER_H
|
|
|
|
#define __WINE_WINVER_H
|
|
|
|
|
2011-11-07 12:21:30 +01:00
|
|
|
/* FIXME: #include <specstrings.h> */
|
|
|
|
#include <verrsrc.h>
|
|
|
|
|
1999-06-12 12:53:06 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* defined(__cplusplus) */
|
|
|
|
|
1999-05-29 13:15:39 +02:00
|
|
|
#ifndef RC_INVOKED
|
|
|
|
|
|
|
|
/* function prototypes */
|
|
|
|
|
2007-09-01 02:46:03 +02:00
|
|
|
DWORD WINAPI VerFindFileA(DWORD,LPCSTR,LPCSTR,LPCSTR,LPSTR,PUINT,LPSTR,PUINT);
|
|
|
|
DWORD WINAPI VerFindFileW(DWORD,LPCWSTR,LPCWSTR,LPCWSTR,LPWSTR,PUINT,LPWSTR,PUINT);
|
1999-02-09 16:46:25 +01:00
|
|
|
#define VerFindFile WINELIB_NAME_AW(VerFindFile)
|
2007-09-01 02:46:03 +02:00
|
|
|
DWORD WINAPI VerInstallFileA(DWORD,LPCSTR,LPCSTR,LPCSTR,LPCSTR,LPCSTR,LPSTR,PUINT);
|
|
|
|
DWORD WINAPI VerInstallFileW(DWORD,LPCWSTR,LPCWSTR,LPCWSTR,LPCWSTR,LPCWSTR,LPWSTR,PUINT);
|
1999-02-09 16:46:25 +01:00
|
|
|
#define VerInstallFile WINELIB_NAME_AW(VerInstallFile)
|
2007-09-01 02:46:03 +02:00
|
|
|
DWORD WINAPI VerLanguageNameA(DWORD,LPSTR,DWORD);
|
|
|
|
DWORD WINAPI VerLanguageNameW(DWORD,LPWSTR,DWORD);
|
1999-09-19 14:15:58 +02:00
|
|
|
#define VerLanguageName WINELIB_NAME_AW(VerLanguageName)
|
2007-09-01 02:46:03 +02:00
|
|
|
BOOL WINAPI VerQueryValueA(LPCVOID,LPCSTR,LPVOID*,PUINT);
|
|
|
|
BOOL WINAPI VerQueryValueW(LPCVOID,LPCWSTR,LPVOID*,PUINT);
|
1999-02-09 16:46:25 +01:00
|
|
|
#define VerQueryValue WINELIB_NAME_AW(VerQueryValue)
|
1999-02-26 12:11:13 +01:00
|
|
|
DWORD WINAPI GetFileVersionInfoSizeA(LPCSTR,LPDWORD);
|
|
|
|
DWORD WINAPI GetFileVersionInfoSizeW(LPCWSTR,LPDWORD);
|
1999-02-09 16:46:25 +01:00
|
|
|
#define GetFileVersionInfoSize WINELIB_NAME_AW(GetFileVersionInfoSize)
|
2001-03-16 17:42:20 +01:00
|
|
|
BOOL WINAPI GetFileVersionInfoA(LPCSTR,DWORD,DWORD,LPVOID);
|
|
|
|
BOOL WINAPI GetFileVersionInfoW(LPCWSTR,DWORD,DWORD,LPVOID);
|
1999-02-09 16:46:25 +01:00
|
|
|
#define GetFileVersionInfo WINELIB_NAME_AW(GetFileVersionInfo)
|
2011-11-07 12:17:56 +01:00
|
|
|
DWORD WINAPI GetFileVersionInfoSizeExA(DWORD,LPCSTR,LPDWORD);
|
|
|
|
DWORD WINAPI GetFileVersionInfoSizeExW(DWORD,LPCWSTR,LPDWORD);
|
|
|
|
#define GetFileVersionInfoSizeEx WINELIB_NAME_AW(GetFileVersionInfoSizeEx)
|
|
|
|
BOOL WINAPI GetFileVersionInfoExA(DWORD,LPCSTR,DWORD,DWORD,LPVOID);
|
|
|
|
BOOL WINAPI GetFileVersionInfoExW(DWORD,LPCWSTR,DWORD,DWORD,LPVOID);
|
|
|
|
#define GetFileVersionInfoEx WINELIB_NAME_AW(GetFileVersionInfoEx)
|
1999-05-29 13:15:39 +02:00
|
|
|
|
|
|
|
#endif /* RC_INVOKED */
|
|
|
|
|
1999-06-12 12:53:06 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif /* defined(__cplusplus) */
|
|
|
|
|
1999-02-09 16:46:25 +01:00
|
|
|
#endif /* __WINE_WINVER_H */
|