1999-04-25 20:31:35 +02:00
|
|
|
/*
|
|
|
|
* Common Dialog Boxes interface (32 bit)
|
|
|
|
* Find/Replace
|
|
|
|
*
|
|
|
|
* Copyright 1999 Bertho A. Stultiens
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1999-04-25 20:31:35 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "winbase.h"
|
2000-05-07 20:39:28 +02:00
|
|
|
#include "wine/winbase16.h"
|
1999-04-25 20:31:35 +02:00
|
|
|
#include "commdlg.h"
|
|
|
|
#include "cderr.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1999-04-25 20:31:35 +02:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(commdlg);
|
1999-04-25 20:31:35 +02:00
|
|
|
|
|
|
|
#include "cdlg.h"
|
|
|
|
|
|
|
|
|
|
|
|
HINSTANCE COMDLG32_hInstance = 0;
|
2002-10-02 04:36:20 +02:00
|
|
|
static HINSTANCE16 COMDLG32_hInstance16;
|
1999-04-25 20:31:35 +02:00
|
|
|
|
|
|
|
static DWORD COMDLG32_TlsIndex;
|
|
|
|
|
1999-08-07 14:32:42 +02:00
|
|
|
HINSTANCE SHELL32_hInstance = 0;
|
2000-06-16 23:51:33 +02:00
|
|
|
HINSTANCE SHFOLDER_hInstance = 0;
|
1999-08-07 14:32:42 +02:00
|
|
|
|
1999-08-21 16:47:28 +02:00
|
|
|
/* ITEMIDLIST */
|
2002-02-02 19:42:11 +01:00
|
|
|
LPITEMIDLIST (WINAPI *COMDLG32_PIDL_ILClone) (LPCITEMIDLIST);
|
|
|
|
LPITEMIDLIST (WINAPI *COMDLG32_PIDL_ILCombine)(LPCITEMIDLIST,LPCITEMIDLIST);
|
|
|
|
LPITEMIDLIST (WINAPI *COMDLG32_PIDL_ILGetNext)(LPITEMIDLIST);
|
|
|
|
BOOL (WINAPI *COMDLG32_PIDL_ILRemoveLastID)(LPCITEMIDLIST);
|
|
|
|
BOOL (WINAPI *COMDLG32_PIDL_ILIsEqual)(LPCITEMIDLIST, LPCITEMIDLIST);
|
1999-08-21 16:47:28 +02:00
|
|
|
|
|
|
|
/* SHELL */
|
2002-02-02 19:42:11 +01:00
|
|
|
LPVOID (WINAPI *COMDLG32_SHAlloc)(DWORD);
|
|
|
|
DWORD (WINAPI *COMDLG32_SHFree)(LPVOID);
|
|
|
|
BOOL (WINAPI *COMDLG32_SHGetFolderPathA)(HWND,int,HANDLE,DWORD,LPSTR);
|
2002-08-17 01:26:22 +02:00
|
|
|
BOOL (WINAPI *COMDLG32_SHGetFolderPathW)(HWND,int,HANDLE,DWORD,LPWSTR);
|
1999-08-21 16:47:28 +02:00
|
|
|
|
1999-04-25 20:31:35 +02:00
|
|
|
/***********************************************************************
|
2002-11-05 00:53:41 +01:00
|
|
|
* DllMain (COMDLG32.init)
|
1999-04-25 20:31:35 +02:00
|
|
|
*
|
|
|
|
* Initialization code for the COMDLG32 DLL
|
|
|
|
*
|
|
|
|
* RETURNS:
|
|
|
|
* FALSE if sibling could not be loaded or instantiated twice, TRUE
|
|
|
|
* otherwise.
|
|
|
|
*/
|
2000-06-16 23:51:33 +02:00
|
|
|
static char * GPA_string = "Failed to get entry point %s for hinst = 0x%08x\n";
|
|
|
|
#define GPA(dest, hinst, name) \
|
|
|
|
if(!(dest = (void*)GetProcAddress(hinst,name)))\
|
|
|
|
{ \
|
2002-05-17 04:55:48 +02:00
|
|
|
ERR(GPA_string, debugstr_a(name), hinst); \
|
2000-06-16 23:51:33 +02:00
|
|
|
return FALSE; \
|
|
|
|
}
|
|
|
|
|
2002-11-05 00:53:41 +01:00
|
|
|
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD Reason, LPVOID Reserved)
|
1999-04-25 20:31:35 +02:00
|
|
|
{
|
2002-11-22 00:55:10 +01:00
|
|
|
TRACE("(%p, %08lx, %p)\n", hInstance, Reason, Reserved);
|
1999-04-25 20:31:35 +02:00
|
|
|
|
|
|
|
switch(Reason)
|
|
|
|
{
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
COMDLG32_hInstance = hInstance;
|
|
|
|
DisableThreadLibraryCalls(hInstance);
|
|
|
|
|
2002-10-02 04:36:20 +02:00
|
|
|
COMDLG32_hInstance16 = LoadLibrary16("commdlg.dll");
|
2000-05-01 16:22:24 +02:00
|
|
|
COMDLG32_TlsIndex = 0xffffffff;
|
1999-07-27 18:20:36 +02:00
|
|
|
|
2000-06-02 21:36:53 +02:00
|
|
|
SHELL32_hInstance = GetModuleHandleA("SHELL32.DLL");
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2001-01-17 23:05:24 +01:00
|
|
|
if (!SHELL32_hInstance)
|
1999-08-07 14:32:42 +02:00
|
|
|
{
|
2001-01-17 23:05:24 +01:00
|
|
|
ERR("loading of shell32 failed\n");
|
1999-08-07 14:32:42 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
1999-07-27 18:20:36 +02:00
|
|
|
|
2000-06-16 23:51:33 +02:00
|
|
|
/* ITEMIDLIST */
|
|
|
|
GPA(COMDLG32_PIDL_ILIsEqual, SHELL32_hInstance, (LPCSTR)21L);
|
|
|
|
GPA(COMDLG32_PIDL_ILCombine, SHELL32_hInstance, (LPCSTR)25L);
|
|
|
|
GPA(COMDLG32_PIDL_ILGetNext, SHELL32_hInstance, (LPCSTR)153L);
|
|
|
|
GPA(COMDLG32_PIDL_ILClone, SHELL32_hInstance, (LPCSTR)18L);
|
|
|
|
GPA(COMDLG32_PIDL_ILRemoveLastID, SHELL32_hInstance, (LPCSTR)17L);
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-08-21 16:47:28 +02:00
|
|
|
/* SHELL */
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-06-16 23:51:33 +02:00
|
|
|
GPA(COMDLG32_SHAlloc, SHELL32_hInstance, (LPCSTR)196L);
|
|
|
|
GPA(COMDLG32_SHFree, SHELL32_hInstance, (LPCSTR)195L);
|
|
|
|
/* for the first versions of shell32 SHGetFolderPathA is in SHFOLDER.DLL */
|
|
|
|
COMDLG32_SHGetFolderPathA = (void*)GetProcAddress(SHELL32_hInstance,"SHGetFolderPathA");
|
|
|
|
if (!COMDLG32_SHGetFolderPathA)
|
|
|
|
{
|
|
|
|
SHFOLDER_hInstance = LoadLibraryA("SHFOLDER.DLL");
|
|
|
|
GPA(COMDLG32_SHGetFolderPathA, SHFOLDER_hInstance,"SHGetFolderPathA");
|
|
|
|
}
|
1999-08-21 16:47:28 +02:00
|
|
|
|
2002-08-17 01:26:22 +02:00
|
|
|
/* for the first versions of shell32 SHGetFolderPathW is in SHFOLDER.DLL */
|
|
|
|
COMDLG32_SHGetFolderPathW = (void*)GetProcAddress(SHELL32_hInstance,"SHGetFolderPathW");
|
|
|
|
if (!COMDLG32_SHGetFolderPathW)
|
|
|
|
{
|
|
|
|
SHFOLDER_hInstance = LoadLibraryA("SHFOLDER.DLL");
|
|
|
|
GPA(COMDLG32_SHGetFolderPathW, SHFOLDER_hInstance,"SHGetFolderPathW");
|
|
|
|
}
|
|
|
|
|
1999-04-25 20:31:35 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DLL_PROCESS_DETACH:
|
2001-01-17 23:05:24 +01:00
|
|
|
if (COMDLG32_TlsIndex != 0xffffffff) TlsFree(COMDLG32_TlsIndex);
|
|
|
|
if(COMDLG32_hInstance16) FreeLibrary16(COMDLG32_hInstance16);
|
|
|
|
if(SHFOLDER_hInstance) FreeLibrary(SHFOLDER_hInstance);
|
|
|
|
break;
|
1999-04-25 20:31:35 +02:00
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
2000-06-16 23:51:33 +02:00
|
|
|
#undef GPA
|
1999-04-25 20:31:35 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* COMDLG32_AllocMem (internal)
|
|
|
|
* Get memory for internal datastructure plus stringspace etc.
|
|
|
|
* RETURNS
|
|
|
|
* Pointer to a heap block: Succes
|
|
|
|
* NULL: Failure
|
|
|
|
*/
|
|
|
|
LPVOID COMDLG32_AllocMem(
|
|
|
|
int size /* [in] Block size to allocate */
|
|
|
|
) {
|
|
|
|
LPVOID ptr = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
|
|
|
|
if(!ptr)
|
|
|
|
{
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_MEMALLOCFAILURE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* COMDLG32_SetCommDlgExtendedError (internal)
|
|
|
|
*
|
|
|
|
* Used to set the thread's local error value if a comdlg32 function fails.
|
|
|
|
*/
|
|
|
|
void COMDLG32_SetCommDlgExtendedError(DWORD err)
|
|
|
|
{
|
1999-06-12 17:45:58 +02:00
|
|
|
TRACE("(%08lx)\n", err);
|
2000-05-01 16:22:24 +02:00
|
|
|
if (COMDLG32_TlsIndex == 0xffffffff)
|
|
|
|
COMDLG32_TlsIndex = TlsAlloc();
|
|
|
|
if (COMDLG32_TlsIndex != 0xffffffff)
|
|
|
|
TlsSetValue(COMDLG32_TlsIndex, (void *)err);
|
|
|
|
else
|
|
|
|
FIXME("No Tls Space\n");
|
1999-04-25 20:31:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 05:34:07 +02:00
|
|
|
* CommDlgExtendedError (COMMDLG.26)
|
|
|
|
* CommDlgExtendedError (COMDLG32.@)
|
1999-04-25 20:31:35 +02:00
|
|
|
*
|
|
|
|
* Get the thread's local error value if a comdlg32 function fails.
|
|
|
|
* RETURNS
|
|
|
|
* Current error value which might not be valid
|
|
|
|
* if a previous call succeeded.
|
|
|
|
*/
|
|
|
|
DWORD WINAPI CommDlgExtendedError(void)
|
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
if (COMDLG32_TlsIndex != 0xffffffff)
|
2000-05-01 16:22:24 +02:00
|
|
|
return (DWORD)TlsGetValue(COMDLG32_TlsIndex);
|
|
|
|
else
|
2000-10-23 01:55:34 +02:00
|
|
|
return 0; /* we never set an error, so there isn't one */
|
1999-04-25 20:31:35 +02:00
|
|
|
}
|