Changes in crossover-wine-src-6.1.0 except for configure
[wine/hacks.git] / dlls / comctl32 / comctl32undoc.c
blobe2b2a7a2f78918a9ce0299a3db52249dac3b72e2
1 /*
2 * Undocumented functions from COMCTL32.DLL
4 * Copyright 1998 Eric Kohl
5 * 1998 Juergen Schmied <j.schmied@metronet.de>
6 * 2000 Eric Kohl for CodeWeavers
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 * NOTES
23 * All of these functions are UNDOCUMENTED!! And I mean UNDOCUMENTED!!!!
24 * Do NOT rely on names or contents of undocumented structures and types!!!
25 * These functions are used by EXPLORER.EXE, IEXPLORE.EXE and
26 * COMCTL32.DLL (internally).
29 #include "config.h"
30 #include "wine/port.h"
32 #include <stdarg.h>
33 #include <string.h>
34 #include <ctype.h>
35 #include <limits.h>
37 #define COBJMACROS
38 #define NONAMELESSUNION
39 #define NONAMELESSSTRUCT
41 #include "windef.h"
42 #include "winbase.h"
43 #include "wingdi.h"
44 #include "winuser.h"
45 #include "winnls.h"
46 #include "winreg.h"
47 #include "commctrl.h"
48 #include "objbase.h"
49 #include "winerror.h"
51 #include "wine/unicode.h"
52 #include "comctl32.h"
54 #include "wine/debug.h"
56 WINE_DEFAULT_DEBUG_CHANNEL(commctrl);
58 static const WCHAR strMRUList[] = { 'M','R','U','L','i','s','t',0 };
60 /**************************************************************************
61 * Alloc [COMCTL32.71]
63 * Allocates memory block from the dll's private heap
65 * PARAMS
66 * dwSize [I] size of the allocated memory block
68 * RETURNS
69 * Success: pointer to allocated memory block
70 * Failure: NULL
72 LPVOID WINAPI Alloc (DWORD dwSize)
74 return LocalAlloc( LMEM_ZEROINIT, dwSize );
78 /**************************************************************************
79 * ReAlloc [COMCTL32.72]
81 * Changes the size of an allocated memory block or allocates a memory
82 * block using the dll's private heap.
84 * PARAMS
85 * lpSrc [I] pointer to memory block which will be resized
86 * dwSize [I] new size of the memory block.
88 * RETURNS
89 * Success: pointer to the resized memory block
90 * Failure: NULL
92 * NOTES
93 * If lpSrc is a NULL-pointer, then ReAlloc allocates a memory
94 * block like Alloc.
96 LPVOID WINAPI ReAlloc (LPVOID lpSrc, DWORD dwSize)
98 if (lpSrc)
99 return LocalReAlloc( lpSrc, dwSize, LMEM_ZEROINIT | LMEM_MOVEABLE );
100 else
101 return LocalAlloc( LMEM_ZEROINIT, dwSize);
105 /**************************************************************************
106 * Free [COMCTL32.73]
108 * Frees an allocated memory block from the dll's private heap.
110 * PARAMS
111 * lpMem [I] pointer to memory block which will be freed
113 * RETURNS
114 * Success: TRUE
115 * Failure: FALSE
117 BOOL WINAPI Free (LPVOID lpMem)
119 return !LocalFree( lpMem );
123 /**************************************************************************
124 * GetSize [COMCTL32.74]
126 * Retrieves the size of the specified memory block from the dll's
127 * private heap.
129 * PARAMS
130 * lpMem [I] pointer to an allocated memory block
132 * RETURNS
133 * Success: size of the specified memory block
134 * Failure: 0
136 DWORD WINAPI GetSize (LPVOID lpMem)
138 return LocalSize( lpMem );
142 /**************************************************************************
143 * MRU-Functions {COMCTL32}
145 * NOTES
146 * The MRU-Api is a set of functions to manipulate lists of M.R.U. (Most Recently
147 * Used) items. It is an undocumented Api that is used (at least) by the shell
148 * and explorer to implement their recent documents feature.
150 * Since these functions are undocumented, they are unsupported by MS and
151 * may change at any time.
153 * Internally, the list is implemented as a last in, last out list of items
154 * persisted into the system registry under a caller chosen key. Each list
155 * item is given a one character identifier in the Ascii range from 'a' to
156 * '}'. A list of the identifiers in order from newest to oldest is stored
157 * under the same key in a value named "MRUList".
159 * Items are re-ordered by changing the order of the values in the MRUList
160 * value. When a new item is added, it becomes the new value of the oldest
161 * identifier, and that identifier is moved to the front of the MRUList value.
163 * Wine stores MRU-lists in the same registry format as Windows, so when
164 * switching between the builtin and native comctl32.dll no problems or
165 * incompatibilities should occur.
167 * The following undocumented structure is used to create an MRU-list:
168 *|typedef INT (CALLBACK *MRUStringCmpFn)(LPCTSTR lhs, LPCTSTR rhs);
169 *|typedef INT (CALLBACK *MRUBinaryCmpFn)(LPCVOID lhs, LPCVOID rhs, DWORD length);
171 *|typedef struct tagCREATEMRULIST
173 *| DWORD cbSize;
174 *| DWORD nMaxItems;
175 *| DWORD dwFlags;
176 *| HKEY hKey;
177 *| LPTSTR lpszSubKey;
178 *| PROC lpfnCompare;
179 *|} CREATEMRULIST, *LPCREATEMRULIST;
181 * MEMBERS
182 * cbSize [I] The size of the CREATEMRULIST structure. This must be set
183 * to sizeof(CREATEMRULIST) by the caller.
184 * nMaxItems [I] The maximum number of items allowed in the list. Because
185 * of the limited number of identifiers, this should be set to
186 * a value from 1 to 30 by the caller.
187 * dwFlags [I] If bit 0 is set, the list will be used to store binary
188 * data, otherwise it is assumed to store strings. If bit 1
189 * is set, every change made to the list will be reflected in
190 * the registry immediately, otherwise changes will only be
191 * written when the list is closed.
192 * hKey [I] The registry key that the list should be written under.
193 * This must be supplied by the caller.
194 * lpszSubKey [I] A caller supplied name of a subkey under hKey to write
195 * the list to. This may not be blank.
196 * lpfnCompare [I] A caller supplied comparison function, which may be either
197 * an MRUStringCmpFn if dwFlags does not have bit 0 set, or a
198 * MRUBinaryCmpFn otherwise.
200 * FUNCTIONS
201 * - Create an MRU-list with CreateMRUList() or CreateMRUListLazy().
202 * - Add items to an MRU-list with AddMRUString() or AddMRUData().
203 * - Remove items from an MRU-list with DelMRUString().
204 * - Find data in an MRU-list with FindMRUString() or FindMRUData().
205 * - Iterate through an MRU-list with EnumMRUList().
206 * - Free an MRU-list with FreeMRUList().
209 typedef struct tagCREATEMRULISTA
211 DWORD cbSize;
212 DWORD nMaxItems;
213 DWORD dwFlags;
214 HKEY hKey;
215 LPSTR lpszSubKey;
216 PROC lpfnCompare;
217 } CREATEMRULISTA, *LPCREATEMRULISTA;
219 typedef struct tagCREATEMRULISTW
221 DWORD cbSize;
222 DWORD nMaxItems;
223 DWORD dwFlags;
224 HKEY hKey;
225 LPWSTR lpszSubKey;
226 PROC lpfnCompare;
227 } CREATEMRULISTW, *LPCREATEMRULISTW;
229 /* dwFlags */
230 #define MRUF_STRING_LIST 0 /* list will contain strings */
231 #define MRUF_BINARY_LIST 1 /* list will contain binary data */
232 #define MRUF_DELAYED_SAVE 2 /* only save list order to reg. is FreeMRUList */
234 /* If list is a string list lpfnCompare has the following prototype
235 * int CALLBACK MRUCompareString(LPCSTR s1, LPCSTR s2)
236 * for binary lists the prototype is
237 * int CALLBACK MRUCompareBinary(LPCVOID data1, LPCVOID data2, DWORD cbData)
238 * where cbData is the no. of bytes to compare.
239 * Need to check what return value means identical - 0?
242 typedef struct tagWINEMRUITEM
244 DWORD size; /* size of data stored */
245 DWORD itemFlag; /* flags */
246 BYTE datastart;
247 } WINEMRUITEM, *LPWINEMRUITEM;
249 /* itemFlag */
250 #define WMRUIF_CHANGED 0x0001 /* this dataitem changed */
252 typedef struct tagWINEMRULIST
254 CREATEMRULISTW extview; /* original create information */
255 BOOL isUnicode; /* is compare fn Unicode */
256 DWORD wineFlags; /* internal flags */
257 DWORD cursize; /* current size of realMRU */
258 LPWSTR realMRU; /* pointer to string of index names */
259 LPWINEMRUITEM *array; /* array of pointers to data */
260 /* in 'a' to 'z' order */
261 } WINEMRULIST, *LPWINEMRULIST;
263 /* wineFlags */
264 #define WMRUF_CHANGED 0x0001 /* MRU list has changed */
266 /**************************************************************************
267 * MRU_SaveChanged (internal)
269 * Local MRU saving code
271 static void MRU_SaveChanged ( LPWINEMRULIST mp )
273 UINT i, err;
274 HKEY newkey;
275 WCHAR realname[2];
276 LPWINEMRUITEM witem;
278 /* or should we do the following instead of RegOpenKeyEx:
281 /* open the sub key */
282 if ((err = RegOpenKeyExW( mp->extview.hKey, mp->extview.lpszSubKey,
283 0, KEY_WRITE, &newkey))) {
284 /* not present - what to do ??? */
285 ERR("Could not open key, error=%d, attempting to create\n",
286 err);
287 if ((err = RegCreateKeyExW( mp->extview.hKey, mp->extview.lpszSubKey,
289 NULL,
290 REG_OPTION_NON_VOLATILE,
291 KEY_READ | KEY_WRITE,
293 &newkey,
294 0))) {
295 ERR("failed to create key /%s/, err=%d\n",
296 debugstr_w(mp->extview.lpszSubKey), err);
297 return;
300 if (mp->wineFlags & WMRUF_CHANGED) {
301 mp->wineFlags &= ~WMRUF_CHANGED;
302 err = RegSetValueExW(newkey, strMRUList, 0, REG_SZ, (LPBYTE)mp->realMRU,
303 (strlenW(mp->realMRU) + 1)*sizeof(WCHAR));
304 if (err) {
305 ERR("error saving MRUList, err=%d\n", err);
307 TRACE("saving MRUList=/%s/\n", debugstr_w(mp->realMRU));
309 realname[1] = 0;
310 for(i=0; i<mp->cursize; i++) {
311 witem = mp->array[i];
312 if (witem->itemFlag & WMRUIF_CHANGED) {
313 witem->itemFlag &= ~WMRUIF_CHANGED;
314 realname[0] = 'a' + i;
315 err = RegSetValueExW(newkey, realname, 0,
316 (mp->extview.dwFlags & MRUF_BINARY_LIST) ?
317 REG_BINARY : REG_SZ,
318 &witem->datastart, witem->size);
319 if (err) {
320 ERR("error saving /%s/, err=%d\n", debugstr_w(realname), err);
322 TRACE("saving value for name /%s/ size=%d\n",
323 debugstr_w(realname), witem->size);
326 RegCloseKey( newkey );
329 /**************************************************************************
330 * FreeMRUList [COMCTL32.152]
332 * Frees a most-recently-used items list.
334 * PARAMS
335 * hMRUList [I] Handle to list.
337 * RETURNS
338 * Nothing.
340 void WINAPI FreeMRUList (HANDLE hMRUList)
342 LPWINEMRULIST mp = (LPWINEMRULIST)hMRUList;
343 UINT i;
345 TRACE("(%p)\n", hMRUList);
346 if (!hMRUList)
347 return;
349 if (mp->wineFlags & WMRUF_CHANGED) {
350 /* need to open key and then save the info */
351 MRU_SaveChanged( mp );
354 for(i=0; i<mp->extview.nMaxItems; i++)
355 Free(mp->array[i]);
357 Free(mp->realMRU);
358 Free(mp->array);
359 Free(mp->extview.lpszSubKey);
360 Free(mp);
364 /**************************************************************************
365 * FindMRUData [COMCTL32.169]
367 * Searches binary list for item that matches lpData of length cbData.
368 * Returns position in list order 0 -> MRU and if lpRegNum != NULL then value
369 * corresponding to item's reg. name will be stored in it ('a' -> 0).
371 * PARAMS
372 * hList [I] list handle
373 * lpData [I] data to find
374 * cbData [I] length of data
375 * lpRegNum [O] position in registry (maybe NULL)
377 * RETURNS
378 * Position in list 0 -> MRU. -1 if item not found.
380 INT WINAPI FindMRUData (HANDLE hList, LPCVOID lpData, DWORD cbData,
381 LPINT lpRegNum)
383 const WINEMRULIST *mp = (LPWINEMRULIST)hList;
384 INT ret;
385 UINT i;
386 LPSTR dataA = NULL;
388 if (!mp->extview.lpfnCompare)
389 return -1;
391 if(!(mp->extview.dwFlags & MRUF_BINARY_LIST) && !mp->isUnicode) {
392 DWORD len = WideCharToMultiByte(CP_ACP, 0, lpData, -1,
393 NULL, 0, NULL, NULL);
394 dataA = Alloc(len);
395 WideCharToMultiByte(CP_ACP, 0, lpData, -1, dataA, len, NULL, NULL);
398 for(i=0; i<mp->cursize; i++) {
399 if (mp->extview.dwFlags & MRUF_BINARY_LIST) {
400 if (!mp->extview.lpfnCompare(lpData, &mp->array[i]->datastart,
401 cbData))
402 break;
404 else {
405 if(mp->isUnicode) {
406 if (!mp->extview.lpfnCompare(lpData, &mp->array[i]->datastart))
407 break;
408 } else {
409 DWORD len = WideCharToMultiByte(CP_ACP, 0,
410 (LPWSTR)&mp->array[i]->datastart, -1,
411 NULL, 0, NULL, NULL);
412 LPSTR itemA = Alloc(len);
413 INT cmp;
414 WideCharToMultiByte(CP_ACP, 0, (LPWSTR)&mp->array[i]->datastart, -1,
415 itemA, len, NULL, NULL);
417 cmp = mp->extview.lpfnCompare(dataA, itemA);
418 Free(itemA);
419 if(!cmp)
420 break;
424 Free(dataA);
425 if (i < mp->cursize)
426 ret = i;
427 else
428 ret = -1;
429 if (lpRegNum && (ret != -1))
430 *lpRegNum = 'a' + i;
432 TRACE("(%p, %p, %d, %p) returning %d\n",
433 hList, lpData, cbData, lpRegNum, ret);
435 return ret;
439 /**************************************************************************
440 * AddMRUData [COMCTL32.167]
442 * Add item to MRU binary list. If item already exists in list then it is
443 * simply moved up to the top of the list and not added again. If list is
444 * full then the least recently used item is removed to make room.
446 * PARAMS
447 * hList [I] Handle to list.
448 * lpData [I] ptr to data to add.
449 * cbData [I] no. of bytes of data.
451 * RETURNS
452 * No. corresponding to registry name where value is stored 'a' -> 0 etc.
453 * -1 on error.
455 INT WINAPI AddMRUData (HANDLE hList, LPCVOID lpData, DWORD cbData)
457 LPWINEMRULIST mp = (LPWINEMRULIST)hList;
458 LPWINEMRUITEM witem;
459 INT i, replace;
461 if ((replace = FindMRUData (hList, lpData, cbData, NULL)) >= 0) {
462 /* Item exists, just move it to the front */
463 LPWSTR pos = strchrW(mp->realMRU, replace + 'a');
464 while (pos > mp->realMRU)
466 pos[0] = pos[-1];
467 pos--;
470 else {
471 /* either add a new entry or replace oldest */
472 if (mp->cursize < mp->extview.nMaxItems) {
473 /* Add in a new item */
474 replace = mp->cursize;
475 mp->cursize++;
477 else {
478 /* get the oldest entry and replace data */
479 replace = mp->realMRU[mp->cursize - 1] - 'a';
480 Free(mp->array[replace]);
483 /* Allocate space for new item and move in the data */
484 mp->array[replace] = witem = Alloc(cbData + sizeof(WINEMRUITEM));
485 witem->itemFlag |= WMRUIF_CHANGED;
486 witem->size = cbData;
487 memcpy( &witem->datastart, lpData, cbData);
489 /* now rotate MRU list */
490 for(i=mp->cursize-1; i>=1; i--)
491 mp->realMRU[i] = mp->realMRU[i-1];
494 /* The new item gets the front spot */
495 mp->wineFlags |= WMRUF_CHANGED;
496 mp->realMRU[0] = replace + 'a';
498 TRACE("(%p, %p, %d) adding data, /%c/ now most current\n",
499 hList, lpData, cbData, replace+'a');
501 if (!(mp->extview.dwFlags & MRUF_DELAYED_SAVE)) {
502 /* save changed stuff right now */
503 MRU_SaveChanged( mp );
506 return replace;
509 /**************************************************************************
510 * AddMRUStringW [COMCTL32.401]
512 * Add an item to an MRU string list.
514 * PARAMS
515 * hList [I] Handle to list.
516 * lpszString [I] The string to add.
518 * RETURNS
519 * Success: The number corresponding to the registry name where the string
520 * has been stored (0 maps to 'a', 1 to 'b' and so on).
521 * Failure: -1, if hList is NULL or memory allocation fails. If lpszString
522 * is invalid, the function returns 0, and GetLastError() returns
523 * ERROR_INVALID_PARAMETER. The last error value is set only in
524 * this case.
526 * NOTES
527 * -If lpszString exists in the list already, it is moved to the top of the
528 * MRU list (it is not duplicated).
529 * -If the list is full the least recently used list entry is replaced with
530 * lpszString.
531 * -If this function returns 0 you should check the last error value to
532 * ensure the call really succeeded.
534 INT WINAPI AddMRUStringW(HANDLE hList, LPCWSTR lpszString)
536 TRACE("(%p,%s)\n", hList, debugstr_w(lpszString));
538 if (!hList)
539 return -1;
541 if (!lpszString || IsBadStringPtrW(lpszString, -1))
543 SetLastError(ERROR_INVALID_PARAMETER);
544 return 0;
547 return AddMRUData(hList, lpszString,
548 (strlenW(lpszString) + 1) * sizeof(WCHAR));
551 /**************************************************************************
552 * AddMRUStringA [COMCTL32.153]
554 * See AddMRUStringW.
556 INT WINAPI AddMRUStringA(HANDLE hList, LPCSTR lpszString)
558 DWORD len;
559 LPWSTR stringW;
560 INT ret;
562 TRACE("(%p,%s)\n", hList, debugstr_a(lpszString));
564 if (!hList)
565 return -1;
567 if (IsBadStringPtrA(lpszString, -1))
569 SetLastError(ERROR_INVALID_PARAMETER);
570 return 0;
573 len = MultiByteToWideChar(CP_ACP, 0, lpszString, -1, NULL, 0) * sizeof(WCHAR);
574 stringW = Alloc(len);
575 if (!stringW)
576 return -1;
578 MultiByteToWideChar(CP_ACP, 0, lpszString, -1, stringW, len/sizeof(WCHAR));
579 ret = AddMRUData(hList, stringW, len);
580 Free(stringW);
581 return ret;
584 /**************************************************************************
585 * DelMRUString [COMCTL32.156]
587 * Removes item from either string or binary list (despite its name)
589 * PARAMS
590 * hList [I] list handle
591 * nItemPos [I] item position to remove 0 -> MRU
593 * RETURNS
594 * TRUE if successful, FALSE if nItemPos is out of range.
596 BOOL WINAPI DelMRUString(HANDLE hList, INT nItemPos)
598 FIXME("(%p, %d): stub\n", hList, nItemPos);
599 return TRUE;
602 /**************************************************************************
603 * FindMRUStringW [COMCTL32.402]
605 * See FindMRUStringA.
607 INT WINAPI FindMRUStringW (HANDLE hList, LPCWSTR lpszString, LPINT lpRegNum)
609 return FindMRUData(hList, lpszString,
610 (lstrlenW(lpszString) + 1) * sizeof(WCHAR), lpRegNum);
613 /**************************************************************************
614 * FindMRUStringA [COMCTL32.155]
616 * Searches string list for item that matches lpszString.
617 * Returns position in list order 0 -> MRU and if lpRegNum != NULL then value
618 * corresponding to item's reg. name will be stored in it ('a' -> 0).
620 * PARAMS
621 * hList [I] list handle
622 * lpszString [I] string to find
623 * lpRegNum [O] position in registry (maybe NULL)
625 * RETURNS
626 * Position in list 0 -> MRU. -1 if item not found.
628 INT WINAPI FindMRUStringA (HANDLE hList, LPCSTR lpszString, LPINT lpRegNum)
630 DWORD len = MultiByteToWideChar(CP_ACP, 0, lpszString, -1, NULL, 0);
631 LPWSTR stringW = Alloc(len * sizeof(WCHAR));
632 INT ret;
634 MultiByteToWideChar(CP_ACP, 0, lpszString, -1, stringW, len);
635 ret = FindMRUData(hList, stringW, len * sizeof(WCHAR), lpRegNum);
636 Free(stringW);
637 return ret;
640 /*************************************************************************
641 * CreateMRUListLazy_common (internal)
643 static HANDLE CreateMRUListLazy_common(LPWINEMRULIST mp)
645 UINT i, err;
646 HKEY newkey;
647 DWORD datasize, dwdisp;
648 WCHAR realname[2];
649 LPWINEMRUITEM witem;
650 DWORD type;
652 /* get space to save indices that will turn into names
653 * but in order of most to least recently used
655 mp->realMRU = Alloc((mp->extview.nMaxItems + 2) * sizeof(WCHAR));
657 /* get space to save pointers to actual data in order of
658 * 'a' to 'z' (0 to n).
660 mp->array = Alloc(mp->extview.nMaxItems * sizeof(LPVOID));
662 /* open the sub key */
663 if ((err = RegCreateKeyExW( mp->extview.hKey, mp->extview.lpszSubKey,
665 NULL,
666 REG_OPTION_NON_VOLATILE,
667 KEY_READ | KEY_WRITE,
669 &newkey,
670 &dwdisp))) {
671 /* error - what to do ??? */
672 ERR("(%u %u %x %p %s %p): Could not open key, error=%d\n",
673 mp->extview.cbSize, mp->extview.nMaxItems, mp->extview.dwFlags,
674 mp->extview.hKey, debugstr_w(mp->extview.lpszSubKey),
675 mp->extview.lpfnCompare, err);
676 return 0;
679 /* get values from key 'MRUList' */
680 if (newkey) {
681 datasize = (mp->extview.nMaxItems + 1) * sizeof(WCHAR);
682 if((err=RegQueryValueExW( newkey, strMRUList, 0, &type,
683 (LPBYTE)mp->realMRU, &datasize))) {
684 /* not present - set size to 1 (will become 0 later) */
685 datasize = 1;
686 *mp->realMRU = 0;
688 else
689 datasize /= sizeof(WCHAR);
691 TRACE("MRU list = %s, datasize = %d\n", debugstr_w(mp->realMRU), datasize);
693 mp->cursize = datasize - 1;
694 /* datasize now has number of items in the MRUList */
696 /* get actual values for each entry */
697 realname[1] = 0;
698 for(i=0; i<mp->cursize; i++) {
699 realname[0] = 'a' + i;
700 if(RegQueryValueExW( newkey, realname, 0, &type, 0, &datasize)) {
701 /* not present - what to do ??? */
702 ERR("Key %s not found 1\n", debugstr_w(realname));
704 mp->array[i] = witem = Alloc(datasize + sizeof(WINEMRUITEM));
705 witem->size = datasize;
706 if(RegQueryValueExW( newkey, realname, 0, &type,
707 &witem->datastart, &datasize)) {
708 /* not present - what to do ??? */
709 ERR("Key %s not found 2\n", debugstr_w(realname));
712 RegCloseKey( newkey );
714 else
715 mp->cursize = 0;
717 TRACE("(%u %u %x %p %s %p): Current Size = %d\n",
718 mp->extview.cbSize, mp->extview.nMaxItems, mp->extview.dwFlags,
719 mp->extview.hKey, debugstr_w(mp->extview.lpszSubKey),
720 mp->extview.lpfnCompare, mp->cursize);
721 return (HANDLE)mp;
724 /**************************************************************************
725 * CreateMRUListLazyW [COMCTL32.404]
727 * See CreateMRUListLazyA.
729 HANDLE WINAPI CreateMRUListLazyW (const CREATEMRULISTW *lpcml, DWORD dwParam2,
730 DWORD dwParam3, DWORD dwParam4)
732 LPWINEMRULIST mp;
734 /* Native does not check for a NULL lpcml */
736 if (lpcml->cbSize != sizeof(CREATEMRULISTW) || !lpcml->hKey ||
737 IsBadStringPtrW(lpcml->lpszSubKey, -1))
738 return NULL;
740 mp = Alloc(sizeof(WINEMRULIST));
741 memcpy(&mp->extview, lpcml, sizeof(CREATEMRULISTW));
742 mp->extview.lpszSubKey = Alloc((strlenW(lpcml->lpszSubKey) + 1) * sizeof(WCHAR));
743 strcpyW(mp->extview.lpszSubKey, lpcml->lpszSubKey);
744 mp->isUnicode = TRUE;
746 return CreateMRUListLazy_common(mp);
749 /**************************************************************************
750 * CreateMRUListLazyA [COMCTL32.157]
752 * Creates a most-recently-used list.
754 * PARAMS
755 * lpcml [I] ptr to CREATEMRULIST structure.
756 * dwParam2 [I] Unknown
757 * dwParam3 [I] Unknown
758 * dwParam4 [I] Unknown
760 * RETURNS
761 * Handle to MRU list.
763 HANDLE WINAPI CreateMRUListLazyA (const CREATEMRULISTA *lpcml, DWORD dwParam2,
764 DWORD dwParam3, DWORD dwParam4)
766 LPWINEMRULIST mp;
767 DWORD len;
769 /* Native does not check for a NULL lpcml */
771 if (lpcml->cbSize != sizeof(CREATEMRULISTA) || !lpcml->hKey ||
772 IsBadStringPtrA(lpcml->lpszSubKey, -1))
773 return 0;
775 mp = Alloc(sizeof(WINEMRULIST));
776 memcpy(&mp->extview, lpcml, sizeof(CREATEMRULISTW));
777 len = MultiByteToWideChar(CP_ACP, 0, lpcml->lpszSubKey, -1, NULL, 0);
778 mp->extview.lpszSubKey = Alloc(len * sizeof(WCHAR));
779 MultiByteToWideChar(CP_ACP, 0, lpcml->lpszSubKey, -1,
780 mp->extview.lpszSubKey, len);
781 mp->isUnicode = FALSE;
782 return CreateMRUListLazy_common(mp);
785 /**************************************************************************
786 * CreateMRUListW [COMCTL32.400]
788 * See CreateMRUListA.
790 HANDLE WINAPI CreateMRUListW (const CREATEMRULISTW *lpcml)
792 return CreateMRUListLazyW(lpcml, 0, 0, 0);
795 /**************************************************************************
796 * CreateMRUListA [COMCTL32.151]
798 * Creates a most-recently-used list.
800 * PARAMS
801 * lpcml [I] ptr to CREATEMRULIST structure.
803 * RETURNS
804 * Handle to MRU list.
806 HANDLE WINAPI CreateMRUListA (const CREATEMRULISTA *lpcml)
808 return CreateMRUListLazyA (lpcml, 0, 0, 0);
812 /**************************************************************************
813 * EnumMRUListW [COMCTL32.403]
815 * Enumerate item in a most-recenty-used list
817 * PARAMS
818 * hList [I] list handle
819 * nItemPos [I] item position to enumerate
820 * lpBuffer [O] buffer to receive item
821 * nBufferSize [I] size of buffer
823 * RETURNS
824 * For binary lists specifies how many bytes were copied to buffer, for
825 * string lists specifies full length of string. Enumerating past the end
826 * of list returns -1.
827 * If lpBuffer == NULL or nItemPos is -ve return value is no. of items in
828 * the list.
830 INT WINAPI EnumMRUListW (HANDLE hList, INT nItemPos, LPVOID lpBuffer,
831 DWORD nBufferSize)
833 const WINEMRULIST *mp = (LPWINEMRULIST) hList;
834 const WINEMRUITEM *witem;
835 INT desired, datasize;
837 if (nItemPos >= mp->cursize) return -1;
838 if ((nItemPos < 0) || !lpBuffer) return mp->cursize;
839 desired = mp->realMRU[nItemPos];
840 desired -= 'a';
841 TRACE("nItemPos=%d, desired=%d\n", nItemPos, desired);
842 witem = mp->array[desired];
843 datasize = min( witem->size, nBufferSize );
844 memcpy( lpBuffer, &witem->datastart, datasize);
845 TRACE("(%p, %d, %p, %d): returning len=%d\n",
846 hList, nItemPos, lpBuffer, nBufferSize, datasize);
847 return datasize;
850 /**************************************************************************
851 * EnumMRUListA [COMCTL32.154]
853 * See EnumMRUListW.
855 INT WINAPI EnumMRUListA (HANDLE hList, INT nItemPos, LPVOID lpBuffer,
856 DWORD nBufferSize)
858 const WINEMRULIST *mp = (LPWINEMRULIST) hList;
859 LPWINEMRUITEM witem;
860 INT desired, datasize;
861 DWORD lenA;
863 if (nItemPos >= mp->cursize) return -1;
864 if ((nItemPos < 0) || !lpBuffer) return mp->cursize;
865 desired = mp->realMRU[nItemPos];
866 desired -= 'a';
867 TRACE("nItemPos=%d, desired=%d\n", nItemPos, desired);
868 witem = mp->array[desired];
869 if(mp->extview.dwFlags & MRUF_BINARY_LIST) {
870 datasize = min( witem->size, nBufferSize );
871 memcpy( lpBuffer, &witem->datastart, datasize);
872 } else {
873 lenA = WideCharToMultiByte(CP_ACP, 0, (LPWSTR)&witem->datastart, -1,
874 NULL, 0, NULL, NULL);
875 datasize = min( witem->size, nBufferSize );
876 WideCharToMultiByte(CP_ACP, 0, (LPWSTR)&witem->datastart, -1,
877 lpBuffer, datasize, NULL, NULL);
879 TRACE("(%p, %d, %p, %d): returning len=%d\n",
880 hList, nItemPos, lpBuffer, nBufferSize, datasize);
881 return datasize;
884 /**************************************************************************
885 * Str_GetPtrWtoA [internal]
887 * Converts a unicode string into a multi byte string
889 * PARAMS
890 * lpSrc [I] Pointer to the unicode source string
891 * lpDest [O] Pointer to caller supplied storage for the multi byte string
892 * nMaxLen [I] Size, in bytes, of the destination buffer
894 * RETURNS
895 * Length, in bytes, of the converted string.
898 INT Str_GetPtrWtoA (LPCWSTR lpSrc, LPSTR lpDest, INT nMaxLen)
900 INT len;
902 TRACE("(%s %p %d)\n", debugstr_w(lpSrc), lpDest, nMaxLen);
904 if (!lpDest && lpSrc)
905 return WideCharToMultiByte(CP_ACP, 0, lpSrc, -1, 0, 0, NULL, NULL);
907 if (nMaxLen == 0)
908 return 0;
910 if (lpSrc == NULL) {
911 lpDest[0] = '\0';
912 return 0;
915 len = WideCharToMultiByte(CP_ACP, 0, lpSrc, -1, 0, 0, NULL, NULL);
916 if (len >= nMaxLen)
917 len = nMaxLen - 1;
919 WideCharToMultiByte(CP_ACP, 0, lpSrc, -1, lpDest, len, NULL, NULL);
920 lpDest[len] = '\0';
922 return len;
926 /**************************************************************************
927 * Str_SetPtrAtoW [internal]
929 * Converts a multi byte string to a unicode string.
930 * If the pointer to the destination buffer is NULL a buffer is allocated.
931 * If the destination buffer is too small to keep the converted multi byte
932 * string the destination buffer is reallocated. If the source pointer is
933 * NULL, the destination buffer is freed.
935 * PARAMS
936 * lppDest [I/O] pointer to a pointer to the destination buffer
937 * lpSrc [I] pointer to a multi byte string
939 * RETURNS
940 * TRUE: conversion successful
941 * FALSE: error
943 BOOL Str_SetPtrAtoW (LPWSTR *lppDest, LPCSTR lpSrc)
945 TRACE("(%p %s)\n", lppDest, lpSrc);
947 if (lpSrc) {
948 INT len = MultiByteToWideChar(CP_ACP,0,lpSrc,-1,NULL,0);
949 LPWSTR ptr = ReAlloc (*lppDest, len*sizeof(WCHAR));
951 if (!ptr)
952 return FALSE;
953 MultiByteToWideChar(CP_ACP,0,lpSrc,-1,ptr,len);
954 *lppDest = ptr;
956 else {
957 Free (*lppDest);
958 *lppDest = NULL;
961 return TRUE;
964 /**************************************************************************
965 * Str_SetPtrWtoA [internal]
967 * Converts a unicode string to a multi byte string.
968 * If the pointer to the destination buffer is NULL a buffer is allocated.
969 * If the destination buffer is too small to keep the converted wide
970 * string the destination buffer is reallocated. If the source pointer is
971 * NULL, the destination buffer is freed.
973 * PARAMS
974 * lppDest [I/O] pointer to a pointer to the destination buffer
975 * lpSrc [I] pointer to a wide string
977 * RETURNS
978 * TRUE: conversion successful
979 * FALSE: error
981 BOOL Str_SetPtrWtoA (LPSTR *lppDest, LPCWSTR lpSrc)
983 TRACE("(%p %s)\n", lppDest, debugstr_w(lpSrc));
985 if (lpSrc) {
986 INT len = WideCharToMultiByte(CP_ACP,0,lpSrc,-1,NULL,0,NULL,FALSE);
987 LPSTR ptr = ReAlloc (*lppDest, len*sizeof(CHAR));
989 if (!ptr)
990 return FALSE;
991 WideCharToMultiByte(CP_ACP,0,lpSrc,-1,ptr,len,NULL,FALSE);
992 *lppDest = ptr;
994 else {
995 Free (*lppDest);
996 *lppDest = NULL;
999 return TRUE;
1003 /**************************************************************************
1004 * Notification functions
1007 typedef struct tagNOTIFYDATA
1009 HWND hwndFrom;
1010 HWND hwndTo;
1011 DWORD dwParam3;
1012 DWORD dwParam4;
1013 DWORD dwParam5;
1014 DWORD dwParam6;
1015 } NOTIFYDATA, *LPNOTIFYDATA;
1018 /**************************************************************************
1019 * DoNotify [Internal]
1022 static LRESULT DoNotify (LPNOTIFYDATA lpNotify, UINT uCode, LPNMHDR lpHdr)
1024 NMHDR nmhdr;
1025 LPNMHDR lpNmh = NULL;
1026 UINT idFrom = 0;
1028 TRACE("(%p %p %d %p 0x%08x)\n",
1029 lpNotify->hwndFrom, lpNotify->hwndTo, uCode, lpHdr,
1030 lpNotify->dwParam5);
1032 if (!lpNotify->hwndTo)
1033 return 0;
1035 if (lpNotify->hwndFrom == (HWND)-1) {
1036 lpNmh = lpHdr;
1037 idFrom = lpHdr->idFrom;
1039 else {
1040 if (lpNotify->hwndFrom)
1041 idFrom = GetDlgCtrlID (lpNotify->hwndFrom);
1043 lpNmh = (lpHdr) ? lpHdr : &nmhdr;
1045 lpNmh->hwndFrom = lpNotify->hwndFrom;
1046 lpNmh->idFrom = idFrom;
1047 lpNmh->code = uCode;
1050 return SendMessageW (lpNotify->hwndTo, WM_NOTIFY, idFrom, (LPARAM)lpNmh);
1054 /**************************************************************************
1055 * SendNotify [COMCTL32.341]
1057 * Sends a WM_NOTIFY message to the specified window.
1059 * PARAMS
1060 * hwndTo [I] Window to receive the message
1061 * hwndFrom [I] Window that the message is from (see notes)
1062 * uCode [I] Notification code
1063 * lpHdr [I] The NMHDR and any additional information to send or NULL
1065 * RETURNS
1066 * Success: return value from notification
1067 * Failure: 0
1069 * NOTES
1070 * If hwndFrom is -1 then the identifier of the control sending the
1071 * message is taken from the NMHDR structure.
1072 * If hwndFrom is not -1 then lpHdr can be NULL.
1074 LRESULT WINAPI SendNotify (HWND hwndTo, HWND hwndFrom, UINT uCode, LPNMHDR lpHdr)
1076 NOTIFYDATA notify;
1078 TRACE("(%p %p %d %p)\n",
1079 hwndTo, hwndFrom, uCode, lpHdr);
1081 notify.hwndFrom = hwndFrom;
1082 notify.hwndTo = hwndTo;
1083 notify.dwParam5 = 0;
1084 notify.dwParam6 = 0;
1086 return DoNotify (&notify, uCode, lpHdr);
1090 /**************************************************************************
1091 * SendNotifyEx [COMCTL32.342]
1093 * Sends a WM_NOTIFY message to the specified window.
1095 * PARAMS
1096 * hwndFrom [I] Window to receive the message
1097 * hwndTo [I] Window that the message is from
1098 * uCode [I] Notification code
1099 * lpHdr [I] The NMHDR and any additional information to send or NULL
1100 * dwParam5 [I] Unknown
1102 * RETURNS
1103 * Success: return value from notification
1104 * Failure: 0
1106 * NOTES
1107 * If hwndFrom is -1 then the identifier of the control sending the
1108 * message is taken from the NMHDR structure.
1109 * If hwndFrom is not -1 then lpHdr can be NULL.
1111 LRESULT WINAPI SendNotifyEx (HWND hwndTo, HWND hwndFrom, UINT uCode,
1112 LPNMHDR lpHdr, DWORD dwParam5)
1114 NOTIFYDATA notify;
1115 HWND hwndNotify;
1117 TRACE("(%p %p %d %p 0x%08x)\n",
1118 hwndFrom, hwndTo, uCode, lpHdr, dwParam5);
1120 hwndNotify = hwndTo;
1121 if (!hwndTo) {
1122 if (IsWindow (hwndFrom)) {
1123 hwndNotify = GetParent (hwndFrom);
1124 if (!hwndNotify)
1125 return 0;
1129 notify.hwndFrom = hwndFrom;
1130 notify.hwndTo = hwndNotify;
1131 notify.dwParam5 = dwParam5;
1132 notify.dwParam6 = 0;
1134 return DoNotify (&notify, uCode, lpHdr);