2 * Unit tests for DPA functions
4 * Copyright 2003 Uwe Bonnes
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.
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.
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
30 #include "wine/test.h"
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);
37 static INT CALLBACK dpa_strcmp(LPVOID pvstr1, LPVOID pvstr2, LPARAM flags)
39 LPCSTR str1 = (LPCSTR)pvstr1;
40 LPCSTR str2 = (LPCSTR)pvstr2;
42 return lstrcmpA (str1, str2);
49 CHAR test_str0[]="test0";
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");
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);