mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 18:22:35 +00:00
- update user32 winetest
svn path=/trunk/; revision=37702
This commit is contained in:
parent
017c4d5476
commit
acffd663c1
20 changed files with 4031 additions and 784 deletions
|
@ -570,13 +570,14 @@ static void test_instances(void)
|
|||
|
||||
static void test_builtinproc(void)
|
||||
{
|
||||
/* Edit behaves differently. ScrollBar have currently only a Unicode winproc */
|
||||
/* Edit behaves differently */
|
||||
static const CHAR NORMAL_CLASSES[][10] = {
|
||||
"Button",
|
||||
"Static",
|
||||
"ComboBox",
|
||||
"ComboLBox",
|
||||
"ListBox",
|
||||
"ScrollBar",
|
||||
"#32770", /* dialog */
|
||||
};
|
||||
static const int NUM_NORMAL_CLASSES = (sizeof(NORMAL_CLASSES)/sizeof(NORMAL_CLASSES[0]));
|
||||
|
@ -796,7 +797,7 @@ static BOOL RegisterTestDialog(HINSTANCE hInstance)
|
|||
wcx.hInstance = hInstance;
|
||||
wcx.hIcon = LoadIcon(NULL, IDI_APPLICATION);
|
||||
wcx.hCursor = LoadCursor(NULL, IDC_ARROW);
|
||||
wcx.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
|
||||
wcx.hbrBackground = GetStockObject(WHITE_BRUSH);
|
||||
wcx.lpszClassName = "TestDialog";
|
||||
wcx.lpszMenuName = "TestDialog";
|
||||
wcx.hIconSm = (HICON)LoadImage(hInstance, MAKEINTRESOURCE(5),
|
||||
|
@ -813,7 +814,7 @@ static BOOL RegisterTestDialog(HINSTANCE hInstance)
|
|||
|
||||
/* test registering a dialog box created by using the CLASS directive in a
|
||||
resource file, then test creating the dialog using CreateDialogParam. */
|
||||
static void WINAPI CreateDialogParamTest(HINSTANCE hInstance)
|
||||
static void CreateDialogParamTest(HINSTANCE hInstance)
|
||||
{
|
||||
HWND hWndMain;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue