- AddRef type info stored in StdDispatch.
[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 "winbase.h"
22 #include "commctrl.h"
23
24 #include "wine/test.h"
25
26 static INT CALLBACK dpa_strcmp(LPVOID pvstr1, LPVOID pvstr2, LPARAM flags)
27 {
28   LPCSTR str1 = (LPCSTR)pvstr1;
29   LPCSTR str2 = (LPCSTR)pvstr2;
30   
31   return lstrcmpA (str1, str2);
32 }
33
34 void DPA_test()
35 {
36   HDPA dpa_ret;
37   INT  int_ret;
38   CHAR test_str0[]="test0";
39   
40   dpa_ret = DPA_Create(0);
41   ok((dpa_ret !=0), "DPA_Create failed");
42   int_ret = DPA_Search(dpa_ret,test_str0,0, dpa_strcmp,0, DPAS_SORTED);
43   ok((int_ret == -1), "DPA_Search found invalid item");
44   int_ret = DPA_Search(dpa_ret,test_str0,0, dpa_strcmp,0, DPAS_SORTED|DPAS_INSERTBEFORE);
45   ok((int_ret == 0), "DPA_Search proposed bad item");
46   int_ret = DPA_Search(dpa_ret,test_str0,0, dpa_strcmp,0, DPAS_SORTED|DPAS_INSERTAFTER);
47   ok((int_ret == 0), "DPA_Search proposed bad item");
48 }
49
50 START_TEST(dpa)
51 {
52     DPA_test();
53     
54 }