Replace 0x%p with %p.
[wine] / include / winver.h
index 1490999..7b8f907 100644 (file)
@@ -1,6 +1,20 @@
 /* Definitions for the VERsion infolibrary (VER.DLL)
- * 
+ *
  * Copyright 1996 Marcus Meissner
+ *
+ * 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
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
 #ifndef __WINE_WINVER_H
@@ -13,15 +27,9 @@ extern "C" {
 #endif /* defined(__cplusplus) */
 
 /* resource ids for different version infos */
-/* These are internal resources for win16, but simple numbers in win32 */
-/* All win32 defines should be moved to winver.h */
-#define        VS_FILE_INFO16          MAKEINTRESOURCE16(16)
-#define        VS_VERSION_INFO16       MAKEINTRESOURCE16(1)
-#define        VS_USER_INFO16          MAKEINTRESOURCE16(100)
-
 #define        VS_FILE_INFO            16
 #define        VS_VERSION_INFO         1
-#define        VS_USER_INFO            100
+#define        VS_USER_DEFINED         100
 
 #define        VS_FFI_SIGNATURE        0xfeef04bdL     /* FileInfo Magic */
 #define        VS_FFI_STRUCVERSION     0x00010000L     /* struc version 1.0 */
@@ -143,45 +151,27 @@ typedef struct tagVS_FIXEDFILEINFO {
 
 /* function prototypes */
 
-DWORD       WINAPI VerFindFile16(UINT16,LPCSTR,LPCSTR,LPCSTR,LPSTR,UINT16*,LPSTR,UINT16*);
 DWORD       WINAPI VerFindFileA(UINT,LPCSTR,LPCSTR,LPCSTR,LPSTR,UINT*,LPSTR,UINT*);
 DWORD       WINAPI VerFindFileW(UINT,LPCWSTR,LPCWSTR,LPCWSTR,LPWSTR,UINT*,LPWSTR,UINT*);
 #define     VerFindFile WINELIB_NAME_AW(VerFindFile)
-DWORD       WINAPI VerInstallFile16(UINT16,LPCSTR,LPCSTR,LPCSTR,LPCSTR,LPCSTR,LPSTR,UINT16*);
 DWORD       WINAPI VerInstallFileA(UINT,LPCSTR,LPCSTR,LPCSTR,LPCSTR,LPCSTR,LPSTR,UINT*);
 DWORD       WINAPI VerInstallFileW(UINT,LPCWSTR,LPCWSTR,LPCWSTR,LPCWSTR,LPCWSTR,LPWSTR,UINT*);
 #define     VerInstallFile WINELIB_NAME_AW(VerInstallFile)
-DWORD       WINAPI VerLanguageName16(UINT16,LPSTR,UINT16);
 DWORD       WINAPI VerLanguageNameA(UINT,LPSTR,UINT);
 DWORD       WINAPI VerLanguageNameW(UINT,LPWSTR,UINT);
 #define     VerLanguageName WINELIB_NAME_AW(VerLanguageName)
-DWORD       WINAPI VerQueryValue16(SEGPTR,LPCSTR,SEGPTR*,UINT16*);
 DWORD       WINAPI VerQueryValueA(LPVOID,LPCSTR,LPVOID*,UINT*);
 DWORD       WINAPI VerQueryValueW(LPVOID,LPCWSTR,LPVOID*,UINT*);
 #define     VerQueryValue WINELIB_NAME_AW(VerQueryValue)
-DWORD       WINAPI GetFileVersionInfoSize16(LPCSTR,LPDWORD);
 DWORD       WINAPI GetFileVersionInfoSizeA(LPCSTR,LPDWORD);
 DWORD       WINAPI GetFileVersionInfoSizeW(LPCWSTR,LPDWORD);
 #define     GetFileVersionInfoSize WINELIB_NAME_AW(GetFileVersionInfoSize)
-DWORD       WINAPI GetFileVersionInfo16(LPCSTR,DWORD,DWORD,LPVOID);
-DWORD       WINAPI GetFileVersionInfoA(LPCSTR,DWORD,DWORD,LPVOID);
-DWORD       WINAPI GetFileVersionInfoW(LPCWSTR,DWORD,DWORD,LPVOID);
+BOOL        WINAPI GetFileVersionInfoA(LPCSTR,DWORD,DWORD,LPVOID);
+BOOL        WINAPI GetFileVersionInfoW(LPCWSTR,DWORD,DWORD,LPVOID);
 #define     GetFileVersionInfo WINELIB_NAME_AW(GetFileVersionInfo)
 
 /* 20 GETFILEVERSIONINFORAW */
 
-#ifdef __WINE__
-
-DWORD WINAPI GetFileResourceSize( LPCSTR lpszFileName,
-                                    LPCSTR lpszResType, LPCSTR lpszResId,
-                                    LPDWORD lpdwFileOffset );
-DWORD WINAPI GetFileResource( LPCSTR lpszFileName,
-                                LPCSTR lpszResType, LPCSTR lpszResId,
-                                DWORD dwFileOffset,
-                                DWORD dwResLen, LPVOID lpvData );
-
-#endif /* __WINE__ */
-
 #endif /* RC_INVOKED */
 
 #ifdef __cplusplus