2006-11-07 21:30:06 +01:00
|
|
|
/*
|
2007-02-13 21:01:35 +01:00
|
|
|
* Misc tests
|
2006-11-07 21:30:06 +01:00
|
|
|
*
|
|
|
|
* Copyright 2006 Paul Vriens
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <windows.h>
|
2015-10-02 15:13:41 +02:00
|
|
|
#include <commctrl.h>
|
2006-11-07 21:30:06 +01:00
|
|
|
|
|
|
|
#include "wine/test.h"
|
2013-04-12 11:58:31 +02:00
|
|
|
#include "v6util.h"
|
2006-11-07 21:30:06 +01:00
|
|
|
|
2007-02-13 21:02:56 +01:00
|
|
|
static PVOID (WINAPI * pAlloc)(LONG);
|
|
|
|
static PVOID (WINAPI * pReAlloc)(PVOID, LONG);
|
|
|
|
static BOOL (WINAPI * pFree)(PVOID);
|
|
|
|
static LONG (WINAPI * pGetSize)(PVOID);
|
|
|
|
|
2006-11-07 21:30:06 +01:00
|
|
|
static INT (WINAPI * pStr_GetPtrA)(LPCSTR, LPSTR, INT);
|
|
|
|
static BOOL (WINAPI * pStr_SetPtrA)(LPSTR, LPCSTR);
|
|
|
|
static INT (WINAPI * pStr_GetPtrW)(LPCWSTR, LPWSTR, INT);
|
|
|
|
static BOOL (WINAPI * pStr_SetPtrW)(LPWSTR, LPCWSTR);
|
|
|
|
|
|
|
|
static HMODULE hComctl32 = 0;
|
|
|
|
|
2015-10-02 15:13:41 +02:00
|
|
|
static char testicon_data[] =
|
|
|
|
{
|
|
|
|
0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x02, 0x00, 0x00, 0x01, 0x00,
|
|
|
|
0x20, 0x00, 0x40, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x28, 0x00,
|
|
|
|
0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00,
|
|
|
|
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x12, 0x0b,
|
|
|
|
0x00, 0x00, 0x12, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0xde, 0xde, 0xde, 0xff, 0xde, 0xde, 0xde, 0xff, 0xde, 0xde,
|
|
|
|
0xde, 0xff, 0xde, 0xde, 0xde, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00
|
|
|
|
};
|
|
|
|
|
2006-11-07 21:30:06 +01:00
|
|
|
#define COMCTL32_GET_PROC(ordinal, func) \
|
|
|
|
p ## func = (void*)GetProcAddress(hComctl32, (LPSTR)ordinal); \
|
|
|
|
if(!p ## func) { \
|
|
|
|
trace("GetProcAddress(%d)(%s) failed\n", ordinal, #func); \
|
|
|
|
FreeLibrary(hComctl32); \
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL InitFunctionPtrs(void)
|
|
|
|
{
|
|
|
|
hComctl32 = LoadLibraryA("comctl32.dll");
|
|
|
|
|
|
|
|
if(!hComctl32)
|
|
|
|
{
|
|
|
|
trace("Could not load comctl32.dll\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-02-13 21:02:56 +01:00
|
|
|
COMCTL32_GET_PROC(71, Alloc);
|
|
|
|
COMCTL32_GET_PROC(72, ReAlloc);
|
|
|
|
COMCTL32_GET_PROC(73, Free);
|
|
|
|
COMCTL32_GET_PROC(74, GetSize);
|
|
|
|
|
2006-11-07 21:30:06 +01:00
|
|
|
COMCTL32_GET_PROC(233, Str_GetPtrA)
|
|
|
|
COMCTL32_GET_PROC(234, Str_SetPtrA)
|
|
|
|
COMCTL32_GET_PROC(235, Str_GetPtrW)
|
|
|
|
COMCTL32_GET_PROC(236, Str_SetPtrW)
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_GetPtrAW(void)
|
|
|
|
{
|
|
|
|
if (pStr_GetPtrA)
|
|
|
|
{
|
|
|
|
static const char source[] = "Just a source string";
|
|
|
|
static const char desttest[] = "Just a destination string";
|
|
|
|
static char dest[MAX_PATH];
|
|
|
|
int sourcelen;
|
|
|
|
int destsize = MAX_PATH;
|
2014-11-01 02:43:57 +01:00
|
|
|
int count;
|
2006-11-07 21:30:06 +01:00
|
|
|
|
|
|
|
sourcelen = strlen(source) + 1;
|
|
|
|
|
|
|
|
count = pStr_GetPtrA(NULL, NULL, 0);
|
|
|
|
ok (count == 0, "Expected count to be 0, it was %d\n", count);
|
|
|
|
|
|
|
|
if (0)
|
|
|
|
{
|
|
|
|
/* Crashes on W98, NT4, W2K, XP, W2K3
|
|
|
|
* Our implementation also crashes and we should probably leave
|
|
|
|
* it like that.
|
|
|
|
*/
|
|
|
|
count = pStr_GetPtrA(NULL, NULL, destsize);
|
|
|
|
trace("count : %d\n", count);
|
|
|
|
}
|
|
|
|
|
|
|
|
count = pStr_GetPtrA(source, NULL, 0);
|
2008-06-30 04:02:10 +02:00
|
|
|
ok (count == sourcelen ||
|
|
|
|
broken(count == sourcelen - 1), /* win9x */
|
|
|
|
"Expected count to be %d, it was %d\n", sourcelen, count);
|
2006-11-07 21:30:06 +01:00
|
|
|
|
|
|
|
strcpy(dest, desttest);
|
|
|
|
count = pStr_GetPtrA(source, dest, 0);
|
2008-06-30 04:02:10 +02:00
|
|
|
ok (count == sourcelen ||
|
|
|
|
broken(count == 0), /* win9x */
|
|
|
|
"Expected count to be %d, it was %d\n", sourcelen, count);
|
2013-10-22 17:12:18 +02:00
|
|
|
ok (!lstrcmpA(dest, desttest) ||
|
|
|
|
broken(!lstrcmpA(dest, "")), /* Win7 */
|
2001-09-17 00:00:00 +02:00
|
|
|
"Expected destination to not have changed\n");
|
2006-11-07 21:30:06 +01:00
|
|
|
|
|
|
|
count = pStr_GetPtrA(source, NULL, destsize);
|
2008-06-30 04:02:10 +02:00
|
|
|
ok (count == sourcelen ||
|
|
|
|
broken(count == sourcelen - 1), /* win9x */
|
|
|
|
"Expected count to be %d, it was %d\n", sourcelen, count);
|
2006-11-07 21:30:06 +01:00
|
|
|
|
|
|
|
count = pStr_GetPtrA(source, dest, destsize);
|
2008-06-30 04:02:10 +02:00
|
|
|
ok (count == sourcelen ||
|
|
|
|
broken(count == sourcelen - 1), /* win9x */
|
|
|
|
"Expected count to be %d, it was %d\n", sourcelen, count);
|
2013-10-22 17:12:18 +02:00
|
|
|
ok (!lstrcmpA(source, dest), "Expected source and destination to be the same\n");
|
2006-11-07 21:30:06 +01:00
|
|
|
|
|
|
|
strcpy(dest, desttest);
|
|
|
|
count = pStr_GetPtrA(NULL, dest, destsize);
|
|
|
|
ok (count == 0, "Expected count to be 0, it was %d\n", count);
|
|
|
|
ok (dest[0] == '\0', "Expected destination to be cut-off and 0 terminated\n");
|
|
|
|
|
|
|
|
destsize = 15;
|
|
|
|
count = pStr_GetPtrA(source, dest, destsize);
|
2008-06-30 04:02:10 +02:00
|
|
|
ok (count == 15 ||
|
|
|
|
broken(count == 14), /* win9x */
|
|
|
|
"Expected count to be 15, it was %d\n", count);
|
2006-11-07 21:30:06 +01:00
|
|
|
ok (!memcmp(source, dest, 14), "Expected first part of source and destination to be the same\n");
|
|
|
|
ok (dest[14] == '\0', "Expected destination to be cut-off and 0 terminated\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-13 21:02:56 +01:00
|
|
|
static void test_Alloc(void)
|
|
|
|
{
|
2008-06-30 04:02:10 +02:00
|
|
|
PCHAR p;
|
|
|
|
BOOL res;
|
|
|
|
DWORD size, min;
|
|
|
|
|
|
|
|
/* allocate size 0 */
|
|
|
|
p = pAlloc(0);
|
|
|
|
ok(p != NULL, "Expected non-NULL ptr\n");
|
|
|
|
|
|
|
|
/* get the minimum size */
|
|
|
|
min = pGetSize(p);
|
|
|
|
|
|
|
|
/* free the block */
|
|
|
|
res = pFree(p);
|
|
|
|
ok(res == TRUE, "Expected TRUE, got %d\n", res);
|
|
|
|
|
|
|
|
/* allocate size 1 */
|
2007-02-13 21:02:56 +01:00
|
|
|
p = pAlloc(1);
|
2008-06-30 04:02:10 +02:00
|
|
|
ok(p != NULL, "Expected non-NULL ptr\n");
|
|
|
|
|
|
|
|
/* get the allocated size */
|
|
|
|
size = pGetSize(p);
|
|
|
|
ok(size == 1 ||
|
|
|
|
broken(size == min), /* win9x */
|
|
|
|
"Expected 1, got %d\n", size);
|
|
|
|
|
|
|
|
/* reallocate the block */
|
2007-02-13 21:02:56 +01:00
|
|
|
p = pReAlloc(p, 2);
|
2008-06-30 04:02:10 +02:00
|
|
|
ok(p != NULL, "Expected non-NULL ptr\n");
|
|
|
|
|
|
|
|
/* get the new size */
|
|
|
|
size = pGetSize(p);
|
|
|
|
ok(size == 2 ||
|
|
|
|
broken(size == min), /* win9x */
|
|
|
|
"Expected 2, got %d\n", size);
|
|
|
|
|
|
|
|
/* free the block */
|
|
|
|
res = pFree(p);
|
|
|
|
ok(res == TRUE, "Expected TRUE, got %d\n", res);
|
|
|
|
|
|
|
|
/* free a NULL ptr */
|
|
|
|
res = pFree(NULL);
|
|
|
|
ok(res == TRUE ||
|
|
|
|
broken(res == FALSE), /* win9x */
|
|
|
|
"Expected TRUE, got %d\n", res);
|
|
|
|
|
|
|
|
/* reallocate a NULL ptr */
|
2007-02-13 21:02:56 +01:00
|
|
|
p = pReAlloc(NULL, 2);
|
2017-12-22 16:24:04 +01:00
|
|
|
ok(p != NULL, "Expected non-NULL ptr\n");
|
2008-06-30 04:02:10 +02:00
|
|
|
|
|
|
|
res = pFree(p);
|
|
|
|
ok(res == TRUE, "Expected TRUE, got %d\n", res);
|
2007-02-13 21:02:56 +01:00
|
|
|
}
|
|
|
|
|
2015-10-02 15:13:41 +02:00
|
|
|
static void test_LoadIconWithScaleDown(void)
|
|
|
|
{
|
|
|
|
static const WCHAR nonexisting_fileW[] = {'n','o','n','e','x','i','s','t','i','n','g','.','i','c','o',0};
|
|
|
|
static const WCHAR nonexisting_resourceW[] = {'N','o','n','e','x','i','s','t','i','n','g',0};
|
|
|
|
static const WCHAR prefixW[] = {'I','C','O',0};
|
|
|
|
HRESULT (WINAPI *pLoadIconMetric)(HINSTANCE, const WCHAR *, int, HICON *);
|
|
|
|
HRESULT (WINAPI *pLoadIconWithScaleDown)(HINSTANCE, const WCHAR *, int, int, HICON *);
|
|
|
|
WCHAR tmp_path[MAX_PATH], icon_path[MAX_PATH];
|
|
|
|
ICONINFO info;
|
|
|
|
HMODULE hinst;
|
|
|
|
HANDLE handle;
|
|
|
|
DWORD written;
|
|
|
|
HRESULT hr;
|
|
|
|
BITMAP bmp;
|
|
|
|
HICON icon;
|
|
|
|
void *ptr;
|
|
|
|
int bytes;
|
|
|
|
BOOL res;
|
|
|
|
|
|
|
|
hinst = LoadLibraryA("comctl32.dll");
|
|
|
|
pLoadIconMetric = (void *)GetProcAddress(hinst, "LoadIconMetric");
|
|
|
|
pLoadIconWithScaleDown = (void *)GetProcAddress(hinst, "LoadIconWithScaleDown");
|
|
|
|
if (!pLoadIconMetric || !pLoadIconWithScaleDown)
|
|
|
|
{
|
|
|
|
win_skip("LoadIconMetric or pLoadIconWithScaleDown not exported by name\n");
|
|
|
|
FreeLibrary(hinst);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
GetTempPathW(MAX_PATH, tmp_path);
|
|
|
|
GetTempFileNameW(tmp_path, prefixW, 0, icon_path);
|
|
|
|
handle = CreateFileW(icon_path, GENERIC_READ | GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
|
|
|
|
FILE_ATTRIBUTE_NORMAL, NULL);
|
|
|
|
ok(handle != INVALID_HANDLE_VALUE, "CreateFileW failed with error %u\n", GetLastError());
|
|
|
|
res = WriteFile(handle, testicon_data, sizeof(testicon_data), &written, NULL);
|
|
|
|
ok(res && written == sizeof(testicon_data), "Failed to write icon file\n");
|
|
|
|
CloseHandle(handle);
|
|
|
|
|
|
|
|
/* test ordinals */
|
|
|
|
ptr = GetProcAddress(hinst, (const char *)380);
|
|
|
|
ok(ptr == pLoadIconMetric,
|
|
|
|
"got wrong pointer for ordinal 380, %p expected %p\n", ptr, pLoadIconMetric);
|
|
|
|
|
|
|
|
ptr = GetProcAddress(hinst, (const char *)381);
|
|
|
|
ok(ptr == pLoadIconWithScaleDown,
|
|
|
|
"got wrong pointer for ordinal 381, %p expected %p\n", ptr, pLoadIconWithScaleDown);
|
|
|
|
|
|
|
|
/* invalid arguments */
|
|
|
|
icon = (HICON)0x1234;
|
2015-10-13 00:32:36 +02:00
|
|
|
hr = pLoadIconMetric(NULL, (LPWSTR)IDI_APPLICATION, 0x100, &icon);
|
2015-10-02 15:13:41 +02:00
|
|
|
ok(hr == E_INVALIDARG, "Expected E_INVALIDARG, got %x\n", hr);
|
|
|
|
ok(icon == NULL, "Expected NULL, got %p\n", icon);
|
|
|
|
|
|
|
|
icon = (HICON)0x1234;
|
|
|
|
hr = pLoadIconMetric(NULL, NULL, LIM_LARGE, &icon);
|
|
|
|
ok(hr == E_INVALIDARG, "Expected E_INVALIDARG, got %x\n", hr);
|
|
|
|
ok(icon == NULL, "Expected NULL, got %p\n", icon);
|
|
|
|
|
|
|
|
icon = (HICON)0x1234;
|
|
|
|
hr = pLoadIconWithScaleDown(NULL, NULL, 32, 32, &icon);
|
|
|
|
ok(hr == E_INVALIDARG, "Expected E_INVALIDARG, got %x\n", hr);
|
|
|
|
ok(icon == NULL, "Expected NULL, got %p\n", icon);
|
|
|
|
|
|
|
|
/* non-existing filename */
|
|
|
|
hr = pLoadIconMetric(NULL, nonexisting_fileW, LIM_LARGE, &icon);
|
|
|
|
todo_wine
|
|
|
|
ok(hr == HRESULT_FROM_WIN32(ERROR_RESOURCE_TYPE_NOT_FOUND),
|
|
|
|
"Expected HRESULT_FROM_WIN32(ERROR_RESOURCE_TYPE_NOT_FOUND), got %x\n", hr);
|
|
|
|
|
|
|
|
hr = pLoadIconWithScaleDown(NULL, nonexisting_fileW, 32, 32, &icon);
|
|
|
|
todo_wine
|
|
|
|
ok(hr == HRESULT_FROM_WIN32(ERROR_RESOURCE_TYPE_NOT_FOUND),
|
|
|
|
"Expected HRESULT_FROM_WIN32(ERROR_RESOURCE_TYPE_NOT_FOUND), got %x\n", hr);
|
|
|
|
|
|
|
|
/* non-existing resource name */
|
|
|
|
hr = pLoadIconMetric(hinst, nonexisting_resourceW, LIM_LARGE, &icon);
|
|
|
|
ok(hr == HRESULT_FROM_WIN32(ERROR_RESOURCE_TYPE_NOT_FOUND),
|
|
|
|
"Expected HRESULT_FROM_WIN32(ERROR_RESOURCE_TYPE_NOT_FOUND), got %x\n", hr);
|
|
|
|
|
|
|
|
hr = pLoadIconWithScaleDown(hinst, nonexisting_resourceW, 32, 32, &icon);
|
|
|
|
ok(hr == HRESULT_FROM_WIN32(ERROR_RESOURCE_TYPE_NOT_FOUND),
|
|
|
|
"Expected HRESULT_FROM_WIN32(ERROR_RESOURCE_TYPE_NOT_FOUND), got %x\n", hr);
|
|
|
|
|
|
|
|
/* load icon using predefined identifier */
|
2015-10-13 00:32:36 +02:00
|
|
|
hr = pLoadIconMetric(NULL, (LPWSTR)IDI_APPLICATION, LIM_SMALL, &icon);
|
2015-10-02 15:13:41 +02:00
|
|
|
ok(hr == S_OK, "Expected S_OK, got %x\n", hr);
|
|
|
|
res = GetIconInfo(icon, &info);
|
|
|
|
ok(res, "Failed to get icon info, error %u\n", GetLastError());
|
|
|
|
bytes = GetObjectA(info.hbmColor, sizeof(bmp), &bmp);
|
|
|
|
ok(bytes > 0, "Failed to get bitmap info for icon\n");
|
|
|
|
ok(bmp.bmWidth == GetSystemMetrics(SM_CXSMICON), "Wrong icon width %d\n", bmp.bmWidth);
|
|
|
|
ok(bmp.bmHeight == GetSystemMetrics(SM_CYSMICON), "Wrong icon height %d\n", bmp.bmHeight);
|
|
|
|
DestroyIcon(icon);
|
|
|
|
|
2015-10-13 00:32:36 +02:00
|
|
|
hr = pLoadIconMetric(NULL, (LPWSTR)IDI_APPLICATION, LIM_LARGE, &icon);
|
2015-10-02 15:13:41 +02:00
|
|
|
ok(hr == S_OK, "Expected S_OK, got %x\n", hr);
|
|
|
|
res = GetIconInfo(icon, &info);
|
|
|
|
ok(res, "Failed to get icon info, error %u\n", GetLastError());
|
|
|
|
bytes = GetObjectA(info.hbmColor, sizeof(bmp), &bmp);
|
|
|
|
ok(bytes > 0, "Failed to get bitmap info for icon\n");
|
|
|
|
ok(bmp.bmWidth == GetSystemMetrics(SM_CXICON), "Wrong icon width %d\n", bmp.bmWidth);
|
|
|
|
ok(bmp.bmHeight == GetSystemMetrics(SM_CYICON), "Wrong icon height %d\n", bmp.bmHeight);
|
|
|
|
DestroyIcon(icon);
|
|
|
|
|
2015-10-13 00:32:36 +02:00
|
|
|
hr = pLoadIconWithScaleDown(NULL, (LPWSTR)IDI_APPLICATION, 42, 42, &icon);
|
2015-10-02 15:13:41 +02:00
|
|
|
ok(hr == S_OK, "Expected S_OK, got %x\n", hr);
|
|
|
|
res = GetIconInfo(icon, &info);
|
|
|
|
ok(res, "Failed to get icon info, error %u\n", GetLastError());
|
|
|
|
bytes = GetObjectA(info.hbmColor, sizeof(bmp), &bmp);
|
|
|
|
ok(bytes > 0, "Failed to get bitmap info for icon\n");
|
|
|
|
ok(bmp.bmWidth == 42, "Wrong icon width %d\n", bmp.bmWidth);
|
|
|
|
ok(bmp.bmHeight == 42, "Wrong icon height %d\n", bmp.bmHeight);
|
|
|
|
DestroyIcon(icon);
|
|
|
|
|
|
|
|
/* load icon from file */
|
|
|
|
hr = pLoadIconMetric(NULL, icon_path, LIM_SMALL, &icon);
|
|
|
|
ok(hr == S_OK, "Expected S_OK, got %x\n", hr);
|
|
|
|
res = GetIconInfo(icon, &info);
|
|
|
|
ok(res, "Failed to get icon info, error %u\n", GetLastError());
|
|
|
|
bytes = GetObjectA(info.hbmColor, sizeof(bmp), &bmp);
|
|
|
|
ok(bytes > 0, "Failed to get bitmap info for icon\n");
|
|
|
|
ok(bmp.bmWidth == GetSystemMetrics(SM_CXSMICON), "Wrong icon width %d\n", bmp.bmWidth);
|
|
|
|
ok(bmp.bmHeight == GetSystemMetrics(SM_CYSMICON), "Wrong icon height %d\n", bmp.bmHeight);
|
|
|
|
DestroyIcon(icon);
|
|
|
|
|
|
|
|
hr = pLoadIconWithScaleDown(NULL, icon_path, 42, 42, &icon);
|
|
|
|
ok(hr == S_OK, "Expected S_OK, got %x\n", hr);
|
|
|
|
res = GetIconInfo(icon, &info);
|
|
|
|
ok(res, "Failed to get icon info, error %u\n", GetLastError());
|
|
|
|
bytes = GetObjectA(info.hbmColor, sizeof(bmp), &bmp);
|
|
|
|
ok(bytes > 0, "Failed to get bitmap info for icon\n");
|
|
|
|
ok(bmp.bmWidth == 42, "Wrong icon width %d\n", bmp.bmWidth);
|
|
|
|
ok(bmp.bmHeight == 42, "Wrong icon height %d\n", bmp.bmHeight);
|
|
|
|
DestroyIcon(icon);
|
|
|
|
|
|
|
|
DeleteFileW(icon_path);
|
|
|
|
FreeLibrary(hinst);
|
|
|
|
}
|
|
|
|
|
2015-11-23 09:37:28 +01:00
|
|
|
static void check_class( const char *name, int must_exist, UINT style, UINT ignore )
|
|
|
|
{
|
|
|
|
WNDCLASSA wc;
|
|
|
|
|
|
|
|
if (GetClassInfoA( 0, name, &wc ))
|
|
|
|
{
|
2018-02-06 06:50:21 +01:00
|
|
|
todo_wine_if(strcmp(name, "Button") &&
|
2018-02-13 08:56:36 +01:00
|
|
|
strcmp(name, "ComboBox") &&
|
2018-02-08 11:37:23 +01:00
|
|
|
strcmp(name, "Edit") &&
|
2018-02-14 06:35:18 +01:00
|
|
|
strcmp(name, "Static") &&
|
|
|
|
strcmp(name, "ListBox") &&
|
|
|
|
strcmp(name, "ComboLBox"))
|
2015-11-23 09:37:28 +01:00
|
|
|
ok( !(~wc.style & style & ~ignore), "System class %s is missing bits %x (%08x/%08x)\n",
|
|
|
|
name, ~wc.style & style, wc.style, style );
|
|
|
|
ok( !(wc.style & ~style), "System class %s has extra bits %x (%08x/%08x)\n",
|
|
|
|
name, wc.style & ~style, wc.style, style );
|
|
|
|
ok( !wc.hInstance, "System class %s has hInstance %p\n", name, wc.hInstance );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ok( !must_exist, "System class %s does not exist\n", name );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* test styles of system classes */
|
|
|
|
static void test_builtin_classes(void)
|
|
|
|
{
|
|
|
|
/* check style bits */
|
|
|
|
check_class( "Button", 1, CS_PARENTDC | CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS, 0 );
|
|
|
|
check_class( "ComboBox", 1, CS_PARENTDC | CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS, 0 );
|
|
|
|
check_class( "Edit", 1, CS_PARENTDC | CS_DBLCLKS | CS_GLOBALCLASS, 0 );
|
|
|
|
check_class( "ListBox", 1, CS_PARENTDC | CS_DBLCLKS | CS_GLOBALCLASS, 0 );
|
|
|
|
check_class( "ScrollBar", 1, CS_PARENTDC | CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS, 0 );
|
|
|
|
check_class( "Static", 1, CS_PARENTDC | CS_DBLCLKS | CS_GLOBALCLASS, 0 );
|
|
|
|
check_class( "ComboLBox", 1, CS_SAVEBITS | CS_DBLCLKS | CS_DROPSHADOW | CS_GLOBALCLASS, CS_DROPSHADOW );
|
|
|
|
}
|
|
|
|
|
2007-02-13 21:01:35 +01:00
|
|
|
START_TEST(misc)
|
2006-11-07 21:30:06 +01:00
|
|
|
{
|
2013-04-12 11:58:31 +02:00
|
|
|
ULONG_PTR ctx_cookie;
|
|
|
|
HANDLE hCtx;
|
|
|
|
|
2006-11-07 21:30:06 +01:00
|
|
|
if(!InitFunctionPtrs())
|
|
|
|
return;
|
|
|
|
|
|
|
|
test_GetPtrAW();
|
2007-02-13 21:02:56 +01:00
|
|
|
test_Alloc();
|
2006-11-07 21:30:06 +01:00
|
|
|
|
2013-04-12 11:58:31 +02:00
|
|
|
if (!load_v6_module(&ctx_cookie, &hCtx))
|
|
|
|
return;
|
|
|
|
|
2015-11-23 09:37:28 +01:00
|
|
|
test_builtin_classes();
|
2015-10-02 15:13:41 +02:00
|
|
|
test_LoadIconWithScaleDown();
|
2013-04-12 11:58:31 +02:00
|
|
|
|
|
|
|
unload_v6_module(ctx_cookie, hCtx);
|
2006-11-07 21:30:06 +01:00
|
|
|
}
|