Removed W->A from DEFWND_ImmIsUIMessageW.
[wine] / dlls / comctl32 / tests / dpa.c
1 /*
2  * Unit tests for DPA functions
3  *
4  * Copyright 2003 Uwe Bonnes
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <stdarg.h>
22
23 #include "windef.h"
24 #include "winbase.h"
25 #include "wingdi.h"
26 #include "winuser.h"
27 #include "winnls.h"
28 #include "commctrl.h"
29
30 #include "wine/test.h"
31
32 static HDPA (WINAPI *pDPA_Create)(int);
33 static BOOL (WINAPI *pDPA_Grow)(const HDPA hdpa, INT nGrow);
34 static BOOL (WINAPI *pDPA_Destroy)(const HDPA hdpa);
35 static BOOL (WINAPI *pDPA_SetPtr)(const HDPA hdpa, INT i, LPVOID p);
36
37 static INT CALLBACK dpa_strcmp(LPVOID pvstr1, LPVOID pvstr2, LPARAM flags)
38 {
39   LPCSTR str1 = (LPCSTR)pvstr1;
40   LPCSTR str2 = (LPCSTR)pvstr2;
41
42   return lstrcmpA (str1, str2);
43 }
44
45 void DPA_test()
46 {
47   HDPA dpa_ret;
48   INT  int_ret;
49   CHAR test_str0[]="test0";
50
51   if (!pDPA_Create)
52       return;
53
54   dpa_ret = pDPA_Create(0);
55   ok((dpa_ret !=0), "DPA_Create failed\n");
56   int_ret = DPA_Search(dpa_ret,test_str0,0, dpa_strcmp,0, DPAS_SORTED);
57   ok((int_ret == -1), "DPA_Search found invalid item\n");
58   int_ret = DPA_Search(dpa_ret,test_str0,0, dpa_strcmp,0, DPAS_SORTED|DPAS_INSERTBEFORE);
59   ok((int_ret == 0), "DPA_Search proposed bad item\n");
60   int_ret = DPA_Search(dpa_ret,test_str0,0, dpa_strcmp,0, DPAS_SORTED|DPAS_INSERTAFTER);
61   ok((int_ret == 0), "DPA_Search proposed bad item\n");
62   int_ret = pDPA_Grow(dpa_ret,0);
63   ok(int_ret != 0, "DPA_Grow failed\n");
64   int_ret = pDPA_SetPtr(dpa_ret, 0, (void*)0xdeadbeef);
65   ok(int_ret != 0, "DPA_SetPtr failed\n");
66   int_ret = pDPA_Destroy(dpa_ret);
67   ok(int_ret != 0, "DPA_Destory failed\n");
68 }
69
70 START_TEST(dpa)
71 {
72     HMODULE hdll;
73
74     hdll=GetModuleHandleA("comctl32.dll");
75     pDPA_Create=(void*)GetProcAddress(hdll,(LPCSTR)328);
76     pDPA_Destroy=(void*)GetProcAddress(hdll,(LPCSTR)329);
77     pDPA_Grow=(void*)GetProcAddress(hdll,(LPCSTR)330);
78     pDPA_SetPtr=(void*)GetProcAddress(hdll,(LPCSTR)335);
79
80     DPA_test();
81 }