comctl32: Fix a typo in comment.
[wine.git] / dlls / mapi32 / util.c
blob13e4affc39cf52d93f0e1f078ba9959cde8ad29d
1 /*
2 * MAPI Utility functions
4 * Copyright 2004 Jon Griffiths
5 * Copyright 2009 Owen Rudge for CodeWeavers
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include <stdarg.h>
23 #include <stdio.h>
25 #define COBJMACROS
27 #include "windef.h"
28 #include "winbase.h"
29 #include "winreg.h"
30 #include "winuser.h"
31 #include "winerror.h"
32 #include "winternl.h"
33 #include "objbase.h"
34 #include "shlwapi.h"
35 #include "wine/debug.h"
36 #include "wine/unicode.h"
37 #include "mapival.h"
38 #include "xcmc.h"
39 #include "msi.h"
40 #include "util.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(mapi);
44 static const BYTE digitsToHex[] = {
45 0,1,2,3,4,5,6,7,8,9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,10,11,12,13,14,15,
46 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
47 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,10,11,12,13,
48 14,15 };
50 MAPI_FUNCTIONS mapiFunctions;
52 /**************************************************************************
53 * ScInitMapiUtil (MAPI32.33)
55 * Initialise Mapi utility functions.
57 * PARAMS
58 * ulReserved [I] Reserved, pass 0.
60 * RETURNS
61 * Success: S_OK. Mapi utility functions may be called.
62 * Failure: MAPI_E_INVALID_PARAMETER, if ulReserved is not 0.
64 * NOTES
65 * Your application does not need to call this function unless it does not
66 * call MAPIInitialize()/MAPIUninitialize().
68 SCODE WINAPI ScInitMapiUtil(ULONG ulReserved)
70 if (mapiFunctions.ScInitMapiUtil)
71 return mapiFunctions.ScInitMapiUtil(ulReserved);
73 FIXME("(0x%08x)stub!\n", ulReserved);
74 if (ulReserved)
75 return MAPI_E_INVALID_PARAMETER;
76 return S_OK;
79 /**************************************************************************
80 * DeinitMapiUtil (MAPI32.34)
82 * Uninitialise Mapi utility functions.
84 * PARAMS
85 * None.
87 * RETURNS
88 * Nothing.
90 * NOTES
91 * Your application does not need to call this function unless it does not
92 * call MAPIInitialize()/MAPIUninitialize().
94 VOID WINAPI DeinitMapiUtil(void)
96 if (mapiFunctions.DeinitMapiUtil)
97 mapiFunctions.DeinitMapiUtil();
98 else
99 FIXME("()stub!\n");
102 typedef LPVOID *LPMAPIALLOCBUFFER;
104 /**************************************************************************
105 * MAPIAllocateBuffer (MAPI32.12)
106 * MAPIAllocateBuffer@8 (MAPI32.13)
108 * Allocate a block of memory.
110 * PARAMS
111 * cbSize [I] Size of the block to allocate in bytes
112 * lppBuffer [O] Destination for pointer to allocated memory
114 * RETURNS
115 * Success: S_OK. *lppBuffer is filled with a pointer to a memory block of
116 * length cbSize bytes.
117 * Failure: MAPI_E_INVALID_PARAMETER, if lppBuffer is NULL.
118 * MAPI_E_NOT_ENOUGH_MEMORY, if the memory allocation fails.
120 * NOTES
121 * Memory allocated with this function should be freed with MAPIFreeBuffer().
122 * Further allocations of memory may be linked to the pointer returned using
123 * MAPIAllocateMore(). Linked allocations are freed when the initial pointer
124 * is feed.
126 SCODE WINAPI MAPIAllocateBuffer(ULONG cbSize, LPVOID *lppBuffer)
128 LPMAPIALLOCBUFFER lpBuff;
130 TRACE("(%d,%p)\n", cbSize, lppBuffer);
132 if (mapiFunctions.MAPIAllocateBuffer)
133 return mapiFunctions.MAPIAllocateBuffer(cbSize, lppBuffer);
135 if (!lppBuffer)
136 return E_INVALIDARG;
138 lpBuff = HeapAlloc(GetProcessHeap(), 0, cbSize + sizeof(*lpBuff));
139 if (!lpBuff)
140 return MAPI_E_NOT_ENOUGH_MEMORY;
142 TRACE("initial allocation:%p, returning %p\n", lpBuff, lpBuff + 1);
143 *lpBuff++ = NULL;
144 *lppBuffer = lpBuff;
145 return S_OK;
148 /**************************************************************************
149 * MAPIAllocateMore (MAPI32.14)
150 * MAPIAllocateMore@12 (MAPI32.15)
152 * Allocate a block of memory linked to a previous allocation.
154 * PARAMS
155 * cbSize [I] Size of the block to allocate in bytes
156 * lpOrig [I] Initial allocation to link to, from MAPIAllocateBuffer()
157 * lppBuffer [O] Destination for pointer to allocated memory
159 * RETURNS
160 * Success: S_OK. *lppBuffer is filled with a pointer to a memory block of
161 * length cbSize bytes.
162 * Failure: MAPI_E_INVALID_PARAMETER, if lpOrig or lppBuffer is invalid.
163 * MAPI_E_NOT_ENOUGH_MEMORY, if memory allocation fails.
165 * NOTES
166 * Memory allocated with this function and stored in *lppBuffer is freed
167 * when lpOrig is passed to MAPIFreeBuffer(). It should not be freed independently.
169 SCODE WINAPI MAPIAllocateMore(ULONG cbSize, LPVOID lpOrig, LPVOID *lppBuffer)
171 LPMAPIALLOCBUFFER lpBuff = lpOrig;
173 TRACE("(%d,%p,%p)\n", cbSize, lpOrig, lppBuffer);
175 if (mapiFunctions.MAPIAllocateMore)
176 return mapiFunctions.MAPIAllocateMore(cbSize, lpOrig, lppBuffer);
178 if (!lppBuffer || !lpBuff || !--lpBuff)
179 return E_INVALIDARG;
181 /* Find the last allocation in the chain */
182 while (*lpBuff)
184 TRACE("linked:%p->%p\n", lpBuff, *lpBuff);
185 lpBuff = *lpBuff;
188 if (SUCCEEDED(MAPIAllocateBuffer(cbSize, lppBuffer)))
190 *lpBuff = ((LPMAPIALLOCBUFFER)*lppBuffer) - 1;
191 TRACE("linking %p->%p\n", lpBuff, *lpBuff);
193 return *lppBuffer ? S_OK : MAPI_E_NOT_ENOUGH_MEMORY;
196 /**************************************************************************
197 * MAPIFreeBuffer (MAPI32.16)
198 * MAPIFreeBuffer@4 (MAPI32.17)
200 * Free a block of memory and any linked allocations associated with it.
202 * PARAMS
203 * lpBuffer [I] Memory to free, returned from MAPIAllocateBuffer()
205 * RETURNS
206 * S_OK.
208 ULONG WINAPI MAPIFreeBuffer(LPVOID lpBuffer)
210 LPMAPIALLOCBUFFER lpBuff = lpBuffer;
212 TRACE("(%p)\n", lpBuffer);
214 if (mapiFunctions.MAPIFreeBuffer)
215 return mapiFunctions.MAPIFreeBuffer(lpBuffer);
217 if (lpBuff && --lpBuff)
219 while (lpBuff)
221 LPVOID lpFree = lpBuff;
223 lpBuff = *lpBuff;
225 TRACE("linked:%p->%p, freeing %p\n", lpFree, lpBuff, lpFree);
226 HeapFree(GetProcessHeap(), 0, lpFree);
229 return S_OK;
232 /**************************************************************************
233 * WrapProgress@20 (MAPI32.41)
235 HRESULT WINAPI WrapProgress(PVOID unk1, PVOID unk2, PVOID unk3, PVOID unk4, PVOID unk5)
237 /* Native does not implement this function */
238 return MAPI_E_NO_SUPPORT;
241 /*************************************************************************
242 * HrDispatchNotifications@4 (MAPI32.239)
244 HRESULT WINAPI HrDispatchNotifications(ULONG flags)
246 FIXME("(%08x)\n", flags);
247 return S_OK;
250 /*************************************************************************
251 * HrThisThreadAdviseSink@8 (MAPI32.42)
253 * Ensure that an advise sink is only notified in its originating thread.
255 * PARAMS
256 * lpSink [I] IMAPIAdviseSink interface to be protected
257 * lppNewSink [I] Destination for wrapper IMAPIAdviseSink interface
259 * RETURNS
260 * Success: S_OK. *lppNewSink contains a new sink to use in place of lpSink.
261 * Failure: E_INVALIDARG, if any parameter is invalid.
263 HRESULT WINAPI HrThisThreadAdviseSink(LPMAPIADVISESINK lpSink, LPMAPIADVISESINK* lppNewSink)
265 if (mapiFunctions.HrThisThreadAdviseSink)
266 return mapiFunctions.HrThisThreadAdviseSink(lpSink, lppNewSink);
268 FIXME("(%p,%p)semi-stub\n", lpSink, lppNewSink);
270 if (!lpSink || !lppNewSink)
271 return E_INVALIDARG;
273 /* Don't wrap the sink for now, just copy it */
274 *lppNewSink = lpSink;
275 IMAPIAdviseSink_AddRef(lpSink);
276 return S_OK;
279 /*************************************************************************
280 * FBinFromHex (MAPI32.44)
282 * Create an array of binary data from a string.
284 * PARAMS
285 * lpszHex [I] String to convert to binary data
286 * lpOut [O] Destination for resulting binary data
288 * RETURNS
289 * Success: TRUE. lpOut contains the decoded binary data.
290 * Failure: FALSE, if lpszHex does not represent a binary string.
292 * NOTES
293 * - lpOut must be at least half the length of lpszHex in bytes.
294 * - Although the Mapi headers prototype this function as both
295 * Ascii and Unicode, there is only one (Ascii) implementation. This
296 * means that lpszHex is treated as an Ascii string (i.e. a single NUL
297 * character in the byte stream terminates the string).
299 BOOL WINAPI FBinFromHex(LPWSTR lpszHex, LPBYTE lpOut)
301 LPSTR lpStr = (LPSTR)lpszHex;
303 TRACE("(%p,%p)\n", lpszHex, lpOut);
305 while (*lpStr)
307 if (lpStr[0] < '0' || lpStr[0] > 'f' || digitsToHex[lpStr[0] - '0'] == 0xff ||
308 lpStr[1] < '0' || lpStr[1] > 'f' || digitsToHex[lpStr[1] - '0'] == 0xff)
309 return FALSE;
311 *lpOut++ = (digitsToHex[lpStr[0] - '0'] << 4) | digitsToHex[lpStr[1] - '0'];
312 lpStr += 2;
314 return TRUE;
317 /*************************************************************************
318 * HexFromBin (MAPI32.45)
320 * Create a string from an array of binary data.
322 * PARAMS
323 * lpHex [I] Binary data to convert to string
324 * iCount [I] Length of lpHex in bytes
325 * lpszOut [O] Destination for resulting hex string
327 * RETURNS
328 * Nothing.
330 * NOTES
331 * - lpszOut must be at least 2 * iCount + 1 bytes characters long.
332 * - Although the Mapi headers prototype this function as both
333 * Ascii and Unicode, there is only one (Ascii) implementation. This
334 * means that the resulting string is not properly NUL terminated
335 * if the caller expects it to be a Unicode string.
337 void WINAPI HexFromBin(LPBYTE lpHex, int iCount, LPWSTR lpszOut)
339 static const char hexDigits[] = { "0123456789ABCDEF" };
340 LPSTR lpStr = (LPSTR)lpszOut;
342 TRACE("(%p,%d,%p)\n", lpHex, iCount, lpszOut);
344 while (iCount-- > 0)
346 *lpStr++ = hexDigits[*lpHex >> 4];
347 *lpStr++ = hexDigits[*lpHex & 0xf];
348 lpHex++;
350 *lpStr = '\0';
353 /*************************************************************************
354 * SwapPlong@8 (MAPI32.47)
356 * Swap the bytes in a ULONG array.
358 * PARAMS
359 * lpData [O] Array to swap bytes in
360 * ulLen [I] Number of ULONG element to swap the bytes of
362 * RETURNS
363 * Nothing.
365 VOID WINAPI SwapPlong(PULONG lpData, ULONG ulLen)
367 ULONG i;
369 for (i = 0; i < ulLen; i++)
370 lpData[i] = RtlUlongByteSwap(lpData[i]);
373 /*************************************************************************
374 * SwapPword@8 (MAPI32.48)
376 * Swap the bytes in a USHORT array.
378 * PARAMS
379 * lpData [O] Array to swap bytes in
380 * ulLen [I] Number of USHORT element to swap the bytes of
382 * RETURNS
383 * Nothing.
385 VOID WINAPI SwapPword(PUSHORT lpData, ULONG ulLen)
387 ULONG i;
389 for (i = 0; i < ulLen; i++)
390 lpData[i] = RtlUshortByteSwap(lpData[i]);
393 /**************************************************************************
394 * MNLS_lstrlenW@4 (MAPI32.62)
396 * Calculate the length of a Unicode string.
398 * PARAMS
399 * lpszStr [I] String to calculate the length of
401 * RETURNS
402 * The length of lpszStr in Unicode characters.
404 ULONG WINAPI MNLS_lstrlenW(LPCWSTR lpszStr)
406 TRACE("(%s)\n", debugstr_w(lpszStr));
407 return strlenW(lpszStr);
410 /*************************************************************************
411 * MNLS_lstrcmpW@8 (MAPI32.63)
413 * Compare two Unicode strings.
415 * PARAMS
416 * lpszLeft [I] First string to compare
417 * lpszRight [I] Second string to compare
419 * RETURNS
420 * An integer less than, equal to or greater than 0, indicating that
421 * lpszLeft is less than, the same, or greater than lpszRight.
423 INT WINAPI MNLS_lstrcmpW(LPCWSTR lpszLeft, LPCWSTR lpszRight)
425 TRACE("(%s,%s)\n", debugstr_w(lpszLeft), debugstr_w(lpszRight));
426 return strcmpW(lpszLeft, lpszRight);
429 /*************************************************************************
430 * MNLS_lstrcpyW@8 (MAPI32.64)
432 * Copy a Unicode string to another string.
434 * PARAMS
435 * lpszDest [O] Destination string
436 * lpszSrc [I] Source string
438 * RETURNS
439 * The length lpszDest in Unicode characters.
441 ULONG WINAPI MNLS_lstrcpyW(LPWSTR lpszDest, LPCWSTR lpszSrc)
443 ULONG len;
445 TRACE("(%p,%s)\n", lpszDest, debugstr_w(lpszSrc));
446 len = (strlenW(lpszSrc) + 1) * sizeof(WCHAR);
447 memcpy(lpszDest, lpszSrc, len);
448 return len;
451 /*************************************************************************
452 * MNLS_CompareStringW@12 (MAPI32.65)
454 * Compare two Unicode strings.
456 * PARAMS
457 * dwCp [I] Code page for the comparison
458 * lpszLeft [I] First string to compare
459 * lpszRight [I] Second string to compare
461 * RETURNS
462 * CSTR_LESS_THAN, CSTR_EQUAL or CSTR_GREATER_THAN, indicating that
463 * lpszLeft is less than, the same, or greater than lpszRight.
465 INT WINAPI MNLS_CompareStringW(DWORD dwCp, LPCWSTR lpszLeft, LPCWSTR lpszRight)
467 INT ret;
469 TRACE("0x%08x,%s,%s\n", dwCp, debugstr_w(lpszLeft), debugstr_w(lpszRight));
470 ret = MNLS_lstrcmpW(lpszLeft, lpszRight);
471 return ret < 0 ? CSTR_LESS_THAN : ret ? CSTR_GREATER_THAN : CSTR_EQUAL;
474 /**************************************************************************
475 * FEqualNames@8 (MAPI32.72)
477 * Compare two Mapi names.
479 * PARAMS
480 * lpName1 [I] First name to compare to lpName2
481 * lpName2 [I] Second name to compare to lpName1
483 * RETURNS
484 * TRUE, if the names are the same,
485 * FALSE, Otherwise.
487 BOOL WINAPI FEqualNames(LPMAPINAMEID lpName1, LPMAPINAMEID lpName2)
489 TRACE("(%p,%p)\n", lpName1, lpName2);
491 if (!lpName1 || !lpName2 ||
492 !IsEqualGUID(lpName1->lpguid, lpName2->lpguid) ||
493 lpName1->ulKind != lpName2->ulKind)
494 return FALSE;
496 if (lpName1->ulKind == MNID_STRING)
497 return !strcmpW(lpName1->Kind.lpwstrName, lpName2->Kind.lpwstrName);
499 return lpName1->Kind.lID == lpName2->Kind.lID;
502 /**************************************************************************
503 * IsBadBoundedStringPtr@8 (MAPI32.71)
505 * Determine if a string pointer is valid.
507 * PARAMS
508 * lpszStr [I] String to check
509 * ulLen [I] Maximum length of lpszStr
511 * RETURNS
512 * TRUE, if lpszStr is invalid or longer than ulLen,
513 * FALSE, otherwise.
515 BOOL WINAPI IsBadBoundedStringPtr(LPCSTR lpszStr, ULONG ulLen)
517 if (!lpszStr || IsBadStringPtrA(lpszStr, -1) || strlen(lpszStr) >= ulLen)
518 return TRUE;
519 return FALSE;
522 /**************************************************************************
523 * FtAddFt@16 (MAPI32.121)
525 * Add two FILETIME's together.
527 * PARAMS
528 * ftLeft [I] FILETIME to add to ftRight
529 * ftRight [I] FILETIME to add to ftLeft
531 * RETURNS
532 * The sum of ftLeft and ftRight
534 LONGLONG WINAPI MAPI32_FtAddFt(FILETIME ftLeft, FILETIME ftRight)
536 LONGLONG *pl = (LONGLONG*)&ftLeft, *pr = (LONGLONG*)&ftRight;
538 return *pl + *pr;
541 /**************************************************************************
542 * FtSubFt@16 (MAPI32.123)
544 * Subtract two FILETIME's together.
546 * PARAMS
547 * ftLeft [I] Initial FILETIME
548 * ftRight [I] FILETIME to subtract from ftLeft
550 * RETURNS
551 * The remainder after ftRight is subtracted from ftLeft.
553 LONGLONG WINAPI MAPI32_FtSubFt(FILETIME ftLeft, FILETIME ftRight)
555 LONGLONG *pl = (LONGLONG*)&ftLeft, *pr = (LONGLONG*)&ftRight;
557 return *pr - *pl;
560 /**************************************************************************
561 * FtMulDw@12 (MAPI32.124)
563 * Multiply a FILETIME by a DWORD.
565 * PARAMS
566 * dwLeft [I] DWORD to multiply with ftRight
567 * ftRight [I] FILETIME to multiply with dwLeft
569 * RETURNS
570 * The product of dwLeft and ftRight
572 LONGLONG WINAPI MAPI32_FtMulDw(DWORD dwLeft, FILETIME ftRight)
574 LONGLONG *pr = (LONGLONG*)&ftRight;
576 return (LONGLONG)dwLeft * (*pr);
579 /**************************************************************************
580 * FtMulDwDw@8 (MAPI32.125)
582 * Multiply two DWORD, giving the result as a FILETIME.
584 * PARAMS
585 * dwLeft [I] DWORD to multiply with dwRight
586 * dwRight [I] DWORD to multiply with dwLeft
588 * RETURNS
589 * The product of ftMultiplier and ftMultiplicand as a FILETIME.
591 LONGLONG WINAPI MAPI32_FtMulDwDw(DWORD dwLeft, DWORD dwRight)
593 return (LONGLONG)dwLeft * (LONGLONG)dwRight;
596 /**************************************************************************
597 * FtNegFt@8 (MAPI32.126)
599 * Negate a FILETIME.
601 * PARAMS
602 * ft [I] FILETIME to negate
604 * RETURNS
605 * The negation of ft.
607 LONGLONG WINAPI MAPI32_FtNegFt(FILETIME ft)
609 LONGLONG *p = (LONGLONG*)&ft;
611 return - *p;
614 /**************************************************************************
615 * UlAddRef@4 (MAPI32.128)
617 * Add a reference to an object.
619 * PARAMS
620 * lpUnk [I] Object to add a reference to.
622 * RETURNS
623 * The new reference count of the object, or 0 if lpUnk is NULL.
625 * NOTES
626 * See IUnknown_AddRef.
628 ULONG WINAPI UlAddRef(void *lpUnk)
630 TRACE("(%p)\n", lpUnk);
632 if (!lpUnk)
633 return 0UL;
634 return IUnknown_AddRef((LPUNKNOWN)lpUnk);
637 /**************************************************************************
638 * UlRelease@4 (MAPI32.129)
640 * Remove a reference from an object.
642 * PARAMS
643 * lpUnk [I] Object to remove reference from.
645 * RETURNS
646 * The new reference count of the object, or 0 if lpUnk is NULL. If lpUnk is
647 * non-NULL and this function returns 0, the object pointed to by lpUnk has
648 * been released.
650 * NOTES
651 * See IUnknown_Release.
653 ULONG WINAPI UlRelease(void *lpUnk)
655 TRACE("(%p)\n", lpUnk);
657 if (!lpUnk)
658 return 0UL;
659 return IUnknown_Release((LPUNKNOWN)lpUnk);
662 /**************************************************************************
663 * UFromSz@4 (MAPI32.133)
665 * Read an integer from a string
667 * PARAMS
668 * lpszStr [I] String to read the integer from.
670 * RETURNS
671 * Success: The integer read from lpszStr.
672 * Failure: 0, if the first character in lpszStr is not 0-9.
674 * NOTES
675 * This function does not accept whitespace and stops at the first non-digit
676 * character.
678 UINT WINAPI UFromSz(LPCSTR lpszStr)
680 ULONG ulRet = 0;
682 TRACE("(%s)\n", debugstr_a(lpszStr));
684 if (lpszStr)
686 while (*lpszStr >= '0' && *lpszStr <= '9')
688 ulRet = ulRet * 10 + (*lpszStr - '0');
689 lpszStr++;
692 return ulRet;
695 /*************************************************************************
696 * OpenStreamOnFile@24 (MAPI32.147)
698 * Create a stream on a file.
700 * PARAMS
701 * lpAlloc [I] Memory allocation function
702 * lpFree [I] Memory free function
703 * ulFlags [I] Flags controlling the opening process
704 * lpszPath [I] Path of file to create stream on
705 * lpszPrefix [I] Prefix of the temporary file name (if ulFlags includes SOF_UNIQUEFILENAME)
706 * lppStream [O] Destination for created stream
708 * RETURNS
709 * Success: S_OK. lppStream contains the new stream object
710 * Failure: E_INVALIDARG if any parameter is invalid, or an HRESULT error code
711 * describing the error.
713 HRESULT WINAPI OpenStreamOnFile(LPALLOCATEBUFFER lpAlloc, LPFREEBUFFER lpFree,
714 ULONG ulFlags, LPWSTR lpszPath, LPWSTR lpszPrefix,
715 LPSTREAM *lppStream)
717 WCHAR szBuff[MAX_PATH];
718 DWORD dwMode = STGM_READWRITE, dwAttributes = 0;
719 HRESULT hRet;
721 TRACE("(%p,%p,0x%08x,%s,%s,%p)\n", lpAlloc, lpFree, ulFlags,
722 debugstr_a((LPSTR)lpszPath), debugstr_a((LPSTR)lpszPrefix), lppStream);
724 if (mapiFunctions.OpenStreamOnFile)
725 return mapiFunctions.OpenStreamOnFile(lpAlloc, lpFree, ulFlags, lpszPath, lpszPrefix, lppStream);
727 if (lppStream)
728 *lppStream = NULL;
730 if (ulFlags & SOF_UNIQUEFILENAME)
732 FIXME("Should generate a temporary name\n");
733 return E_INVALIDARG;
736 if (!lpszPath || !lppStream)
737 return E_INVALIDARG;
739 /* FIXME: Should probably munge mode and attributes, and should handle
740 * Unicode arguments (I assume MAPI_UNICODE is set in ulFlags if
741 * we are being passed Unicode strings; MSDN doesn't say).
742 * This implementation is just enough for Outlook97 to start.
744 MultiByteToWideChar(CP_ACP, 0, (LPSTR)lpszPath, -1, szBuff, MAX_PATH);
745 hRet = SHCreateStreamOnFileEx(szBuff, dwMode, dwAttributes, TRUE,
746 NULL, lppStream);
747 return hRet;
750 /*************************************************************************
751 * UlFromSzHex@4 (MAPI32.155)
753 * Read an integer from a hexadecimal string.
755 * PARAMS
756 * lpSzHex [I] String containing the hexadecimal number to read
758 * RETURNS
759 * Success: The number represented by lpszHex.
760 * Failure: 0, if lpszHex does not contain a hex string.
762 * NOTES
763 * This function does not accept whitespace and stops at the first non-hex
764 * character.
766 ULONG WINAPI UlFromSzHex(LPCWSTR lpszHex)
768 LPCSTR lpStr = (LPCSTR)lpszHex;
769 ULONG ulRet = 0;
771 TRACE("(%s)\n", debugstr_a(lpStr));
773 while (*lpStr)
775 if (lpStr[0] < '0' || lpStr[0] > 'f' || digitsToHex[lpStr[0] - '0'] == 0xff ||
776 lpStr[1] < '0' || lpStr[1] > 'f' || digitsToHex[lpStr[1] - '0'] == 0xff)
777 break;
779 ulRet = ulRet * 16 + ((digitsToHex[lpStr[0] - '0'] << 4) | digitsToHex[lpStr[1] - '0']);
780 lpStr += 2;
782 return ulRet;
785 /************************************************************************
786 * FBadEntryList@4 (MAPI32.190)
788 * Determine is an entry list is invalid.
790 * PARAMS
791 * lpEntryList [I] List to check
793 * RETURNS
794 * TRUE, if lpEntryList is invalid,
795 * FALSE, otherwise.
797 BOOL WINAPI FBadEntryList(LPENTRYLIST lpEntryList)
799 ULONG i;
801 if (IsBadReadPtr(lpEntryList, sizeof(*lpEntryList)) ||
802 IsBadReadPtr(lpEntryList->lpbin,
803 lpEntryList->cValues * sizeof(*lpEntryList->lpbin)))
804 return TRUE;
806 for (i = 0; i < lpEntryList->cValues; i++)
807 if(IsBadReadPtr(lpEntryList->lpbin[i].lpb, lpEntryList->lpbin[i].cb))
808 return TRUE;
810 return FALSE;
813 /*************************************************************************
814 * CbOfEncoded@4 (MAPI32.207)
816 * Return the length of an encoded string.
818 * PARAMS
819 * lpSzEnc [I] Encoded string to get the length of.
821 * RETURNS
822 * The length of the encoded string in bytes.
824 ULONG WINAPI CbOfEncoded(LPCSTR lpszEnc)
826 ULONG ulRet = 0;
828 TRACE("(%s)\n", debugstr_a(lpszEnc));
830 if (lpszEnc)
831 ulRet = (((strlen(lpszEnc) | 3) >> 2) + 1) * 3;
832 return ulRet;
835 /*************************************************************************
836 * cmc_query_configuration (MAPI32.235)
838 * Retrieves the configuration information for the installed CMC
840 * PARAMS
841 * session [I] MAPI session handle
842 * item [I] Enumerated variable that identifies which
843 * configuration information is being requested
844 * reference [O] Buffer where configuration information is written
845 * config_extensions[I/O] Path of file to create stream on
847 * RETURNS
848 * A CMD define
850 CMC_return_code WINAPI cmc_query_configuration(
851 CMC_session_id session,
852 CMC_enum item,
853 CMC_buffer reference,
854 CMC_extension *config_extensions)
856 FIXME("stub\n");
857 return CMC_E_NOT_SUPPORTED;
860 /**************************************************************************
861 * FGetComponentPath (MAPI32.254)
862 * FGetComponentPath@20 (MAPI32.255)
864 * Return the installed component path, usually to the private mapi32.dll.
866 * PARAMS
867 * component [I] Component ID
868 * qualifier [I] Application LCID
869 * dll_path [O] returned component path
870 * dll_path_length [I] component path length
871 * install [I] install mode
873 * RETURNS
874 * Success: TRUE.
875 * Failure: FALSE.
877 * NOTES
878 * Previously documented in Q229700 "How to locate the correct path
879 * to the Mapisvc.inf file in Microsoft Outlook".
881 BOOL WINAPI FGetComponentPath(LPCSTR component, LPCSTR qualifier, LPSTR dll_path,
882 DWORD dll_path_length, BOOL install)
884 BOOL ret = FALSE;
885 HMODULE hmsi;
887 TRACE("%s %s %p %u %d\n", component, qualifier, dll_path, dll_path_length, install);
889 if (mapiFunctions.FGetComponentPath)
890 return mapiFunctions.FGetComponentPath(component, qualifier, dll_path, dll_path_length, install);
892 dll_path[0] = 0;
894 hmsi = LoadLibraryA("msi.dll");
895 if (hmsi)
897 UINT (WINAPI *pMsiProvideQualifiedComponentA)(LPCSTR, LPCSTR, DWORD, LPSTR, LPDWORD);
899 pMsiProvideQualifiedComponentA = (void *)GetProcAddress(hmsi, "MsiProvideQualifiedComponentA");
900 if (pMsiProvideQualifiedComponentA)
902 static const char * const fmt[] = { "%d\\NT", "%d\\95", "%d" };
903 char lcid_ver[20];
904 UINT i;
906 for (i = 0; i < sizeof(fmt)/sizeof(fmt[0]); i++)
908 /* FIXME: what's the correct behaviour here? */
909 if (!qualifier || qualifier == lcid_ver)
911 sprintf(lcid_ver, fmt[i], GetUserDefaultUILanguage());
912 qualifier = lcid_ver;
915 if (pMsiProvideQualifiedComponentA(component, qualifier,
916 install ? INSTALLMODE_DEFAULT : INSTALLMODE_EXISTING,
917 dll_path, &dll_path_length) == ERROR_SUCCESS)
919 ret = TRUE;
920 break;
923 if (qualifier != lcid_ver) break;
926 FreeLibrary(hmsi);
928 return ret;
931 /**************************************************************************
932 * HrQueryAllRows (MAPI32.75)
934 HRESULT WINAPI HrQueryAllRows(LPMAPITABLE lpTable, LPSPropTagArray lpPropTags,
935 LPSRestriction lpRestriction, LPSSortOrderSet lpSortOrderSet,
936 LONG crowsMax, LPSRowSet *lppRows)
938 if (mapiFunctions.HrQueryAllRows)
939 return mapiFunctions.HrQueryAllRows(lpTable, lpPropTags, lpRestriction, lpSortOrderSet, crowsMax, lppRows);
941 FIXME("(%p, %p, %p, %p, %d, %p): stub\n", lpTable, lpPropTags, lpRestriction, lpSortOrderSet, crowsMax, lppRows);
942 *lppRows = NULL;
943 return MAPI_E_CALL_FAILED;
946 /**************************************************************************
947 * WrapCompressedRTFStream (MAPI32.186)
949 HRESULT WINAPI WrapCompressedRTFStream(LPSTREAM compressed, ULONG flags, LPSTREAM *uncompressed)
951 if (mapiFunctions.WrapCompressedRTFStream)
952 return mapiFunctions.WrapCompressedRTFStream(compressed, flags, uncompressed);
954 FIXME("(%p, 0x%08x, %p): stub\n", compressed, flags, uncompressed);
955 return MAPI_E_NO_SUPPORT;
958 static HMODULE mapi_provider;
959 static HMODULE mapi_ex_provider;
961 /**************************************************************************
962 * load_mapi_provider
964 * Attempts to load a MAPI provider from the specified registry key.
966 * Returns a handle to the loaded module in `mapi_provider' if successful.
968 static void load_mapi_provider(HKEY hkeyMail, LPCWSTR valueName, HMODULE *mapi_provider)
970 static const WCHAR mapi32_dll[] = {'m','a','p','i','3','2','.','d','l','l',0 };
972 DWORD dwType, dwLen = 0;
973 LPWSTR dllPath;
975 /* Check if we have a value set for DLLPath */
976 if ((RegQueryValueExW(hkeyMail, valueName, NULL, &dwType, NULL, &dwLen) == ERROR_SUCCESS) &&
977 ((dwType == REG_SZ) || (dwType == REG_EXPAND_SZ)) && (dwLen > 0))
979 dllPath = HeapAlloc(GetProcessHeap(), 0, dwLen);
981 if (dllPath)
983 RegQueryValueExW(hkeyMail, valueName, NULL, NULL, (LPBYTE)dllPath, &dwLen);
985 /* Check that this value doesn't refer to mapi32.dll (eg, as Outlook does) */
986 if (lstrcmpiW(dllPath, mapi32_dll) != 0)
988 if (dwType == REG_EXPAND_SZ)
990 DWORD dwExpandLen;
991 LPWSTR dllPathExpanded;
993 /* Expand the path if necessary */
994 dwExpandLen = ExpandEnvironmentStringsW(dllPath, NULL, 0);
995 dllPathExpanded = HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR) * dwExpandLen + 1);
997 if (dllPathExpanded)
999 ExpandEnvironmentStringsW(dllPath, dllPathExpanded, dwExpandLen + 1);
1001 HeapFree(GetProcessHeap(), 0, dllPath);
1002 dllPath = dllPathExpanded;
1006 /* Load the DLL */
1007 TRACE("loading %s\n", debugstr_w(dllPath));
1008 *mapi_provider = LoadLibraryW(dllPath);
1011 HeapFree(GetProcessHeap(), 0, dllPath);
1016 /**************************************************************************
1017 * load_mapi_providers
1019 * Scans the registry for MAPI providers and attempts to load a Simple and
1020 * Extended MAPI library.
1022 * Returns TRUE if at least one library loaded, FALSE otherwise.
1024 void load_mapi_providers(void)
1026 static const WCHAR regkey_mail[] = {
1027 'S','o','f','t','w','a','r','e','\\','C','l','i','e','n','t','s','\\',
1028 'M','a','i','l',0 };
1030 static const WCHAR regkey_dllpath[] = {'D','L','L','P','a','t','h',0 };
1031 static const WCHAR regkey_dllpath_ex[] = {'D','L','L','P','a','t','h','E','x',0 };
1032 static const WCHAR regkey_backslash[] = { '\\', 0 };
1034 HKEY hkeyMail;
1035 DWORD dwType, dwLen = 0;
1036 LPWSTR appName = NULL, appKey = NULL;
1038 TRACE("()\n");
1040 /* Open the Mail key */
1041 if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, regkey_mail, 0, KEY_READ, &hkeyMail) != ERROR_SUCCESS)
1042 return;
1044 /* Check if we have a default value set, and the length of it */
1045 if ((RegQueryValueExW(hkeyMail, NULL, NULL, &dwType, NULL, &dwLen) != ERROR_SUCCESS) ||
1046 !((dwType == REG_SZ) || (dwType == REG_EXPAND_SZ)) || (dwLen == 0))
1047 goto cleanUp;
1049 appName = HeapAlloc(GetProcessHeap(), 0, dwLen);
1051 if (!appName)
1052 goto cleanUp;
1054 /* Get the value, and get the path to the app key */
1055 RegQueryValueExW(hkeyMail, NULL, NULL, NULL, (LPBYTE)appName, &dwLen);
1057 TRACE("appName: %s\n", debugstr_w(appName));
1059 appKey = HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR) * (lstrlenW(regkey_mail) +
1060 lstrlenW(regkey_backslash) + lstrlenW(appName) + 1));
1062 if (!appKey)
1063 goto cleanUp;
1065 lstrcpyW(appKey, regkey_mail);
1066 lstrcatW(appKey, regkey_backslash);
1067 lstrcatW(appKey, appName);
1069 RegCloseKey(hkeyMail);
1071 TRACE("appKey: %s\n", debugstr_w(appKey));
1073 /* Open the app's key */
1074 if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, appKey, 0, KEY_READ, &hkeyMail) != ERROR_SUCCESS)
1075 goto cleanUp;
1077 /* Try to load the providers */
1078 load_mapi_provider(hkeyMail, regkey_dllpath, &mapi_provider);
1079 load_mapi_provider(hkeyMail, regkey_dllpath_ex, &mapi_ex_provider);
1081 /* Now try to load our function pointers */
1082 ZeroMemory(&mapiFunctions, sizeof(mapiFunctions));
1084 /* Simple MAPI functions */
1085 if (mapi_provider)
1087 mapiFunctions.MAPIAddress = (void*) GetProcAddress(mapi_provider, "MAPIAddress");
1088 mapiFunctions.MAPIDeleteMail = (void*) GetProcAddress(mapi_provider, "MAPIDeleteMail");
1089 mapiFunctions.MAPIDetails = (void*) GetProcAddress(mapi_provider, "MAPIDetails");
1090 mapiFunctions.MAPIFindNext = (void*) GetProcAddress(mapi_provider, "MAPIFindNext");
1091 mapiFunctions.MAPILogoff = (void*) GetProcAddress(mapi_provider, "MAPILogoff");
1092 mapiFunctions.MAPILogon = (void*) GetProcAddress(mapi_provider, "MAPILogon");
1093 mapiFunctions.MAPIReadMail = (void*) GetProcAddress(mapi_provider, "MAPIReadMail");
1094 mapiFunctions.MAPIResolveName = (void*) GetProcAddress(mapi_provider, "MAPIResolveName");
1095 mapiFunctions.MAPISaveMail = (void*) GetProcAddress(mapi_provider, "MAPISaveMail");
1096 mapiFunctions.MAPISendDocuments = (void*) GetProcAddress(mapi_provider, "MAPISendDocuments");
1097 mapiFunctions.MAPISendMail = (void*) GetProcAddress(mapi_provider, "MAPISendMail");
1098 mapiFunctions.MAPISendMailW = (void*) GetProcAddress(mapi_provider, "MAPISendMailW");
1101 /* Extended MAPI functions */
1102 if (mapi_ex_provider)
1104 mapiFunctions.MAPIInitialize = (void*) GetProcAddress(mapi_ex_provider, "MAPIInitialize");
1105 mapiFunctions.MAPILogonEx = (void*) GetProcAddress(mapi_ex_provider, "MAPILogonEx");
1106 mapiFunctions.MAPIUninitialize = (void*) GetProcAddress(mapi_ex_provider, "MAPIUninitialize");
1108 mapiFunctions.DeinitMapiUtil = (void*) GetProcAddress(mapi_ex_provider, "DeinitMapiUtil@0");
1109 mapiFunctions.DllCanUnloadNow = (void*) GetProcAddress(mapi_ex_provider, "DllCanUnloadNow");
1110 mapiFunctions.DllGetClassObject = (void*) GetProcAddress(mapi_ex_provider, "DllGetClassObject");
1111 mapiFunctions.FGetComponentPath = (void*) GetProcAddress(mapi_ex_provider, "FGetComponentPath");
1112 mapiFunctions.HrThisThreadAdviseSink = (void*) GetProcAddress(mapi_ex_provider, "HrThisThreadAdviseSink@8");
1113 mapiFunctions.HrQueryAllRows = (void*) GetProcAddress(mapi_ex_provider, "HrQueryAllRows@24");
1114 mapiFunctions.MAPIAdminProfiles = (void*) GetProcAddress(mapi_ex_provider, "MAPIAdminProfiles");
1115 mapiFunctions.MAPIAllocateBuffer = (void*) GetProcAddress(mapi_ex_provider, "MAPIAllocateBuffer");
1116 mapiFunctions.MAPIAllocateMore = (void*) GetProcAddress(mapi_ex_provider, "MAPIAllocateMore");
1117 mapiFunctions.MAPIFreeBuffer = (void*) GetProcAddress(mapi_ex_provider, "MAPIFreeBuffer");
1118 mapiFunctions.MAPIGetDefaultMalloc = (void*) GetProcAddress(mapi_ex_provider, "MAPIGetDefaultMalloc@0");
1119 mapiFunctions.MAPIOpenLocalFormContainer = (void *) GetProcAddress(mapi_ex_provider, "MAPIOpenLocalFormContainer");
1120 mapiFunctions.OpenStreamOnFile = (void*) GetProcAddress(mapi_ex_provider, "OpenStreamOnFile@24");
1121 mapiFunctions.ScInitMapiUtil = (void*) GetProcAddress(mapi_ex_provider, "ScInitMapiUtil@4");
1122 mapiFunctions.WrapCompressedRTFStream = (void*) GetProcAddress(mapi_ex_provider, "WrapCompressedRTFStream@12");
1125 cleanUp:
1126 RegCloseKey(hkeyMail);
1127 HeapFree(GetProcessHeap(), 0, appKey);
1128 HeapFree(GetProcessHeap(), 0, appName);
1131 /**************************************************************************
1132 * unload_mapi_providers
1134 * Unloads any loaded MAPI libraries.
1136 void unload_mapi_providers(void)
1138 TRACE("()\n");
1140 FreeLibrary(mapi_provider);
1141 FreeLibrary(mapi_ex_provider);