2011-11-07 11:17:56 +00:00
|
|
|
/* Definitions for the VERsion info library (VER.DLL)
|
2002-05-31 23:06:46 +00:00
|
|
|
*
|
1999-05-29 11:15:39 +00:00
|
|
|
* Copyright 1996 Marcus Meissner
|
2002-03-09 23:29:33 +00: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 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1999-05-29 11:15:39 +00:00
|
|
|
*/
|
|
|
|
|
1999-02-09 15:46:25 +00:00
|
|
|
#ifndef __WINE_WINVER_H
|
|
|
|
#define __WINE_WINVER_H
|
|
|
|
|
2011-11-07 11:21:30 +00:00
|
|
|
/* FIXME: #include <specstrings.h> */
|
|
|
|
#include <verrsrc.h>
|
|
|
|
|
1999-06-12 10:53:06 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* defined(__cplusplus) */
|
|
|
|
|
1999-05-29 11:15:39 +00:00
|
|
|
#ifndef RC_INVOKED
|
|
|
|
|
|
|
|
/* function prototypes */
|
|
|
|
|
2007-09-01 00:46:03 +00: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 15:46:25 +00:00
|
|
|
#define VerFindFile WINELIB_NAME_AW(VerFindFile)
|
2007-09-01 00:46:03 +00: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 15:46:25 +00:00
|
|
|
#define VerInstallFile WINELIB_NAME_AW(VerInstallFile)
|
2007-09-01 00:46:03 +00:00
|
|
|
DWORD WINAPI VerLanguageNameA(DWORD,LPSTR,DWORD);
|
|
|
|
DWORD WINAPI VerLanguageNameW(DWORD,LPWSTR,DWORD);
|
1999-09-19 12:15:58 +00:00
|
|
|
#define VerLanguageName WINELIB_NAME_AW(VerLanguageName)
|
2007-09-01 00:46:03 +00:00
|
|
|
BOOL WINAPI VerQueryValueA(LPCVOID,LPCSTR,LPVOID*,PUINT);
|
|
|
|
BOOL WINAPI VerQueryValueW(LPCVOID,LPCWSTR,LPVOID*,PUINT);
|
1999-02-09 15:46:25 +00:00
|
|
|
#define VerQueryValue WINELIB_NAME_AW(VerQueryValue)
|
1999-02-26 11:11:13 +00:00
|
|
|
DWORD WINAPI GetFileVersionInfoSizeA(LPCSTR,LPDWORD);
|
|
|
|
DWORD WINAPI GetFileVersionInfoSizeW(LPCWSTR,LPDWORD);
|
1999-02-09 15:46:25 +00:00
|
|
|
#define GetFileVersionInfoSize WINELIB_NAME_AW(GetFileVersionInfoSize)
|
2001-03-16 16:42:20 +00:00
|
|
|
BOOL WINAPI GetFileVersionInfoA(LPCSTR,DWORD,DWORD,LPVOID);
|
|
|
|
BOOL WINAPI GetFileVersionInfoW(LPCWSTR,DWORD,DWORD,LPVOID);
|
1999-02-09 15:46:25 +00:00
|
|
|
#define GetFileVersionInfo WINELIB_NAME_AW(GetFileVersionInfo)
|
2011-11-07 11:17:56 +00: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 11:15:39 +00:00
|
|
|
|
|
|
|
#endif /* RC_INVOKED */
|
|
|
|
|
1999-06-12 10:53:06 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif /* defined(__cplusplus) */
|
|
|
|
|
1999-02-09 15:46:25 +00:00
|
|
|
#endif /* __WINE_WINVER_H */
|