2 * Copyright (C) 2004 Stefan Leichter
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "wine/test.h"
27 static void test_info_size(void)
31 retval = GetFileVersionInfoSizeA( NULL, NULL);
33 "GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
35 ok( (ERROR_RESOURCE_DATA_NOT_FOUND == GetLastError()) ||
36 (ERROR_INVALID_PARAMETER == GetLastError()),
37 "Last error wrong! ERROR_RESOURCE_DATA_NOT_FOUND/ERROR_INVALID_PARAMETER "
38 "(98) expected, got 0x%08lx\n", GetLastError());
42 retval = GetFileVersionInfoSizeA( NULL, &hdl);
44 "GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
46 ok( (ERROR_RESOURCE_DATA_NOT_FOUND == GetLastError()) ||
47 (ERROR_INVALID_PARAMETER == GetLastError()),
48 "Last error wrong! ERROR_RESOURCE_DATA_NOT_FOUND/ERROR_INVALID_PARAMETER "
49 "(98) expected, got 0x%08lx\n", GetLastError());
51 "Handle wrong! 0L expected, got 0x%08lx\n", hdl);
54 retval = GetFileVersionInfoSizeA( "", NULL);
56 "GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
58 ok( (ERROR_RESOURCE_DATA_NOT_FOUND == GetLastError()) ||
59 (ERROR_BAD_PATHNAME == GetLastError()),
60 "Last error wrong! ERROR_RESOURCE_DATA_NOT_FOUND/ERROR_BAD_PATHNAME "
61 "(98) expected, got 0x%08lx\n", GetLastError());
65 retval = GetFileVersionInfoSizeA( "", &hdl);
67 "GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
69 ok( (ERROR_RESOURCE_DATA_NOT_FOUND == GetLastError()) ||
70 (ERROR_BAD_PATHNAME == GetLastError()),
71 "Last error wrong! ERROR_RESOURCE_DATA_NOT_FOUND/ERROR_BAD_PATHNAME "
72 "(98) expected, got 0x%08lx\n", GetLastError());
74 "Handle wrong! 0L expected, got 0x%08lx\n", hdl);
77 retval = GetFileVersionInfoSizeA( "kernel32.dll", NULL);
79 "GetFileVersionInfoSizeA result wrong! <> 0L expected, got 0x%08lx\n",
81 ok( NO_ERROR == GetLastError(),
82 "Last error wrong! NO_ERROR expected, got 0x%08lx\n",
87 retval = GetFileVersionInfoSizeA( "kernel32.dll", &hdl);
89 "GetFileVersionInfoSizeA result wrong! <> 0L expected, got 0x%08lx\n",
91 ok( NO_ERROR == GetLastError(),
92 "Last error wrong! NO_ERROR expected, got 0x%08lx\n",
95 "Handle wrong! 0L expected, got 0x%08lx\n", hdl);
98 retval = GetFileVersionInfoSizeA( "notexist.dll", NULL);
100 "GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
102 ok( (ERROR_FILE_NOT_FOUND == GetLastError()) ||
103 (ERROR_RESOURCE_DATA_NOT_FOUND == GetLastError()),
104 "Last error wrong! ERROR_FILE_NOT_FOUND/ERROR_RESOURCE_DATA_NOT_FOUND "
105 "(XP) expected, got 0x%08lx\n", GetLastError());