mirror of
https://github.com/reactos/wine.git
synced 2024-12-03 17:31:15 +00:00
594997c900
Sat Apr 29 20:42:01 1995 Alexandre Julliard (julliard@sunsite.unc.edu) * [controls/static.c] Fixed painting of SS_*FRAME controls. * [if1632/callback.c] Pass the window instance as DS to the 16-bit window procedure. Rewrote Catch() and Throw() to make them work with multiple tasks. * [loader/main.c] New function MAIN_Init() to perform initializations before the first task is started instead of doing them in InitApp(). Temporary hack to command-line parsing to load one program per command-line argument, to make testing task-switching easier. * [loader/*.c] Reimplemented modules to use a Windows-compatible layout and to allow multiple tasks and multiple module instances. Not really finished yet. * [loader/task.c] [misc/exec.c] Reimplemented tasks to use a common address space, and implemented preliminary task-switching capabilities. * [memory/global.c] Fixed bug in GlobalNext(). * [misc/main.c] Updated the list of contributors. Let me know if I forgot someone. * [miscemu/int21.c] Use one DTA per task instead of a global one. * [objects/bitblt.c] Fixed bug in BitBlt() that could cause BadMatch errors. * [tools/build.c] Added new function type 'stub', that makes possible to export an unimplemented function by name as well as by ordinal. This will avoid loading errors for unimplemented functions. Generate an in-memory module layout for built-in DLLs so that the same code can be used for built-in and loaded modules. Changed relay code to make it unnecessary to save the value of the BP register. * [windows/message.c] Implemented multiple message queues and preliminary task-switching capabilities. Inter-task SendMessage() calls are not implemented yet and will probably cause crashes if used. * [windows/property.c] Reimplemented properties and allocate them on the USER heap. * [windows/win.c] Fixed bug in SetWindowWord(). Reimplemented EnumWindows() and EnumTaskWindows(). Tue Apr 18 09:48:38 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de> * [misc/main.c] GetSystemParametersInfo(): Additional action SPI_GETICONTITLEFONT. * [loader/resource.c] Removed the check for NE_SEGFLAGS_EXECUTEONLY, since it broke control.exe. Fixed icon loading. * [objects/font.c] [include/windows.h] Fixed a bug in InitFontsList() and worked on the EnumFonts() functions to make them comprehensible. * [controls/button.c] Fixed my previous patch to handle LBUTTONUP messages. Fri Apr 14 11:41:28 1995 Cameron Heide (heide@ee.ualberta.ca) * [misc/network.c, misc/dos_fs.c] Implemented WNetGetConnection. All that is currently supported are drives, for which the remote name is simply the redirected UNIX directory name. * [miscemu/int2?.c] More drive number validity checking. Wed Apr 12 11:28:37 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de> * [controls/listbox.c] Oops, my previous change to ListBoxDirectory broke the Borland file open dialog. Fixed. Mon Apr 10 23:17:12 1995 Martin von Loewis <loewis@informatik.hu-berlin.de> * [if1632/ole2nls.spec] [misc/ole2nls.c] [misc/Imakefile] New file ole2nls.c. Added stubs for GetUserDefaultLCID, GetSystemDefaultLCID, GetUserDefaultLangID, GetSystemDefaultLangID. Mon Apr 10 10:05:18 1995 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de> * [memory/global.c] [memory/local.c] [include/windows.h] GlobalReAlloc(): If GMEM_MODIFY is set, don't resize the block. LocalReAlloc(): Same for LMEM_MODIFY. * [controls/listbox.c] Fixed a bug in ListBoxDirectory that prevented commdlg from working. Check for errors in some more places. * [if1632/gdi.spec] [if1632/user.spec] 16 bit callback functions should be passed as segptrs. * [include/dlls.h] [loader/ne_image.c] [loader/selector.c] [loader/library.c] Prevent a DLL from being initialized twice (Borlands Resource Workshop used to do this). Provide an additional flag for each w_file that indicates whether it's an EXE or a DLL, for combinations like pbrush.exe/.dll. * [controls/button.c] Handle LBUTTONUP messages even if the button no longer has the capture (for WinHelp). * [include/wintypes.h] FARPROC is now a segptr for the emulator and a function pointer for the library. * [misc/commdlg.c] [misc/commdlg.h] Cleaned the file dialogs up a little. They now work reasonably well, although there are still some problems (e.g. files are initially invisible). * [windows/class.c] [if1632/user.spec] [include/windows.h] GetClassInfo() must take a segptr, as it checks whether the highword is zero. GetClassName() called the wrong atom function. No surprise it didn't find anything. * [misc/lstr.c] AnsiToOem() and OemToAnsi() didn't terminate the strings. Fixed. Removed some warnings. * [if1632/relay.c] [if1632/ddeml.spec] [include/dlls.h] New spec file for the 3.1 DDEML DDL. * [controls/menu.c] Small fix to ChangeMenu - mask out the obsolete flags (MF_APPEND == MF_OWNERDRAW, this led to problems). It also had problems with the MF_BYPOSITION flag. * [windows/message.c] SendMessage(): call the WH_CALLWNDPROC hook function. This is rather ugly, I'm afraid. Windows probably passes a pointer to the 16 bit stack for speed reasons. * [windows/hook.c] [include/windows.h] Set/HookWindowsHook() shouldn't just call their *Ex counterparts, as they have slightly different semantics. MS Hearts now works somewhat, if you disable the new builtin DDEML. The graphics are completely messed up, though.
477 lines
14 KiB
C
477 lines
14 KiB
C
/*
|
|
* Shell Library Functions
|
|
*/
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include "windows.h"
|
|
#include "library.h"
|
|
#include "shell.h"
|
|
#include "neexe.h"
|
|
#include "selectors.h"
|
|
#include "../rc/sysres.h"
|
|
#include "stddebug.h"
|
|
/* #define DEBUG_REG */
|
|
#include "debug.h"
|
|
|
|
LPKEYSTRUCT lphRootKey = NULL,lphTopKey = NULL;
|
|
|
|
static char RootKeyName[]=".classes", TopKeyName[] = "(null)";
|
|
|
|
/*************************************************************************
|
|
* SHELL_RegCheckForRoot() internal use only
|
|
*/
|
|
static LONG SHELL_RegCheckForRoot()
|
|
{
|
|
HKEY hNewKey;
|
|
|
|
if (lphRootKey == NULL){
|
|
hNewKey = GlobalAlloc(GMEM_MOVEABLE,sizeof(KEYSTRUCT));
|
|
lphRootKey = (LPKEYSTRUCT) GlobalLock(hNewKey);
|
|
if (lphRootKey == NULL) {
|
|
printf("SHELL_RegCheckForRoot: Couldn't allocate root key!\n");
|
|
return ERROR_OUTOFMEMORY;
|
|
}
|
|
lphRootKey->hKey = 1;
|
|
lphRootKey->lpSubKey = RootKeyName;
|
|
lphRootKey->dwType = 0;
|
|
lphRootKey->lpValue = NULL;
|
|
lphRootKey->lpSubLvl = lphRootKey->lpNextKey = lphRootKey->lpPrevKey = NULL;
|
|
|
|
hNewKey = GlobalAlloc(GMEM_MOVEABLE,sizeof(KEYSTRUCT));
|
|
lphTopKey = (LPKEYSTRUCT) GlobalLock(hNewKey);
|
|
if (lphTopKey == NULL) {
|
|
printf("SHELL_RegCheckForRoot: Couldn't allocate top key!\n");
|
|
return ERROR_OUTOFMEMORY;
|
|
}
|
|
lphTopKey->hKey = 0;
|
|
lphTopKey->lpSubKey = TopKeyName;
|
|
lphTopKey->dwType = 0;
|
|
lphTopKey->lpValue = NULL;
|
|
lphTopKey->lpSubLvl = lphRootKey;
|
|
lphTopKey->lpNextKey = lphTopKey->lpPrevKey = NULL;
|
|
|
|
dprintf_reg(stddeb,"SHELL_RegCheckForRoot: Root/Top created\n");
|
|
}
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
/*************************************************************************
|
|
* RegOpenKey [SHELL.1]
|
|
*/
|
|
LONG RegOpenKey(HKEY hKey, LPCSTR lpSubKey, HKEY FAR *lphKey)
|
|
{
|
|
LPKEYSTRUCT lpKey;
|
|
LPCSTR ptr;
|
|
char str[128];
|
|
LONG dwRet;
|
|
|
|
dwRet = SHELL_RegCheckForRoot();
|
|
if (dwRet != ERROR_SUCCESS) return dwRet;
|
|
dprintf_reg(stddeb, "RegOpenKey(%08lX, %p='%s', %p)\n",
|
|
hKey, lpSubKey, lpSubKey, lphKey);
|
|
if (lpSubKey == NULL) return ERROR_INVALID_PARAMETER;
|
|
if (lphKey == NULL) return ERROR_INVALID_PARAMETER;
|
|
switch(hKey) {
|
|
case 0:
|
|
lpKey = lphTopKey; break;
|
|
case HKEY_CLASSES_ROOT: /* == 1 */
|
|
lpKey = lphRootKey; break;
|
|
default:
|
|
dprintf_reg(stddeb,"RegOpenKey // specific key = %08lX !\n", hKey);
|
|
lpKey = (LPKEYSTRUCT)GlobalLock(hKey);
|
|
}
|
|
if (!*lpSubKey) { *lphKey = hKey; return ERROR_SUCCESS; }
|
|
while(*lpSubKey) {
|
|
ptr = strchr(lpSubKey,'\\');
|
|
if (!ptr) ptr = lpSubKey + strlen(lpSubKey);
|
|
strncpy(str,lpSubKey,ptr-lpSubKey);
|
|
str[ptr-lpSubKey] = 0;
|
|
lpSubKey = ptr;
|
|
if (*lpSubKey) lpSubKey++;
|
|
|
|
lpKey = lpKey->lpSubLvl;
|
|
while(lpKey != NULL && strcmp(lpKey->lpSubKey, str) != 0) { lpKey = lpKey->lpNextKey; }
|
|
if (lpKey == NULL) {
|
|
dprintf_reg(stddeb,"RegOpenKey: key %s not found!\n",str);
|
|
return ERROR_BADKEY;
|
|
}
|
|
}
|
|
*lphKey = lpKey->hKey;
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* RegCreateKey [SHELL.2]
|
|
*/
|
|
LONG RegCreateKey(HKEY hKey, LPCSTR lpSubKey, HKEY FAR *lphKey)
|
|
{
|
|
HKEY hNewKey;
|
|
LPKEYSTRUCT lpNewKey;
|
|
LPKEYSTRUCT lpKey;
|
|
LPKEYSTRUCT lpPrevKey;
|
|
LONG dwRet;
|
|
LPCSTR ptr;
|
|
char str[128];
|
|
|
|
dwRet = SHELL_RegCheckForRoot();
|
|
if (dwRet != ERROR_SUCCESS) return dwRet;
|
|
dprintf_reg(stddeb, "RegCreateKey(%08lX, '%s', %p)\n", hKey, lpSubKey, lphKey);
|
|
if (lpSubKey == NULL) return ERROR_INVALID_PARAMETER;
|
|
if (lphKey == NULL) return ERROR_INVALID_PARAMETER;
|
|
switch(hKey) {
|
|
case 0:
|
|
lpKey = lphTopKey; break;
|
|
case HKEY_CLASSES_ROOT: /* == 1 */
|
|
lpKey = lphRootKey; break;
|
|
default:
|
|
dprintf_reg(stddeb,"RegCreateKey // specific key = %08lX !\n", hKey);
|
|
lpKey = (LPKEYSTRUCT)GlobalLock(hKey);
|
|
}
|
|
if (!*lpSubKey) { *lphKey = hKey; return ERROR_SUCCESS; }
|
|
while (*lpSubKey) {
|
|
dprintf_reg(stddeb, "RegCreateKey: Looking for subkey %s\n", lpSubKey);
|
|
ptr = strchr(lpSubKey,'\\');
|
|
if (!ptr) ptr = lpSubKey + strlen(lpSubKey);
|
|
strncpy(str,lpSubKey,ptr-lpSubKey);
|
|
str[ptr-lpSubKey] = 0;
|
|
lpSubKey = ptr;
|
|
if (*lpSubKey) lpSubKey++;
|
|
|
|
lpPrevKey = lpKey;
|
|
lpKey = lpKey->lpSubLvl;
|
|
while(lpKey != NULL && strcmp(lpKey->lpSubKey, str) != 0) {
|
|
lpKey = lpKey->lpNextKey;
|
|
}
|
|
if (lpKey == NULL) {
|
|
hNewKey = GlobalAlloc(GMEM_MOVEABLE, sizeof(KEYSTRUCT));
|
|
lpNewKey = (LPKEYSTRUCT) GlobalLock(hNewKey);
|
|
if (lpNewKey == NULL) {
|
|
printf("RegCreateKey // Can't alloc new key !\n");
|
|
return ERROR_OUTOFMEMORY;
|
|
}
|
|
lpNewKey->hKey = hNewKey;
|
|
lpNewKey->lpSubKey = malloc(strlen(str) + 1);
|
|
if (lpNewKey->lpSubKey == NULL) {
|
|
printf("RegCreateKey // Can't alloc key string !\n");
|
|
return ERROR_OUTOFMEMORY;
|
|
}
|
|
strcpy(lpNewKey->lpSubKey, str);
|
|
lpNewKey->lpNextKey = lpPrevKey->lpSubLvl;
|
|
lpNewKey->lpPrevKey = NULL;
|
|
lpPrevKey->lpSubLvl = lpNewKey;
|
|
|
|
lpNewKey->dwType = 0;
|
|
lpNewKey->lpValue = NULL;
|
|
lpNewKey->lpSubLvl = NULL;
|
|
*lphKey = hNewKey;
|
|
dprintf_reg(stddeb,"RegCreateKey // successful '%s' key=%08lX !\n", str, hNewKey);
|
|
lpKey = lpNewKey;
|
|
} else {
|
|
*lphKey = lpKey->hKey;
|
|
dprintf_reg(stddeb,"RegCreateKey // found '%s', key=%08lX\n", str, *lphKey);
|
|
}
|
|
}
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* RegCloseKey [SHELL.3]
|
|
*/
|
|
LONG RegCloseKey(HKEY hKey)
|
|
{
|
|
dprintf_reg(stdnimp, "EMPTY STUB !!! RegCloseKey(%08lX);\n", hKey);
|
|
return ERROR_INVALID_PARAMETER;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* RegDeleteKey [SHELL.4]
|
|
*/
|
|
LONG RegDeleteKey(HKEY hKey, LPCSTR lpSubKey)
|
|
{
|
|
dprintf_reg(stdnimp, "EMPTY STUB !!! RegDeleteKey(%08lX, '%s');\n",
|
|
hKey, lpSubKey);
|
|
return ERROR_INVALID_PARAMETER;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* RegSetValue [SHELL.5]
|
|
*/
|
|
LONG RegSetValue(HKEY hKey, LPCSTR lpSubKey, DWORD dwType,
|
|
LPCSTR lpVal, DWORD dwIgnored)
|
|
{
|
|
HKEY hRetKey;
|
|
LPKEYSTRUCT lpKey;
|
|
LONG dwRet;
|
|
dprintf_reg(stddeb, "RegSetValue(%08lX, '%s', %08lX, '%s', %08lX);\n",
|
|
hKey, lpSubKey, dwType, lpVal, dwIgnored);
|
|
if (lpSubKey == NULL) return ERROR_INVALID_PARAMETER;
|
|
if (lpVal == NULL) return ERROR_INVALID_PARAMETER;
|
|
if ((dwRet = RegOpenKey(hKey, lpSubKey, &hRetKey)) != ERROR_SUCCESS) {
|
|
dprintf_reg(stddeb, "RegSetValue // key not found ... so create it !\n");
|
|
if ((dwRet = RegCreateKey(hKey, lpSubKey, &hRetKey)) != ERROR_SUCCESS) {
|
|
fprintf(stderr, "RegSetValue // key creation error %08lX !\n", dwRet);
|
|
return dwRet;
|
|
}
|
|
}
|
|
lpKey = (LPKEYSTRUCT)GlobalLock(hRetKey);
|
|
if (lpKey == NULL) return ERROR_BADKEY;
|
|
if (lpKey->lpValue != NULL) free(lpKey->lpValue);
|
|
lpKey->lpValue = malloc(strlen(lpVal) + 1);
|
|
strcpy(lpKey->lpValue, lpVal);
|
|
dprintf_reg(stddeb,"RegSetValue // successful key='%s' val='%s' !\n", lpSubKey, lpKey->lpValue);
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* RegQueryValue [SHELL.6]
|
|
*/
|
|
LONG RegQueryValue(HKEY hKey, LPCSTR lpSubKey, LPSTR lpVal, LONG FAR *lpcb)
|
|
{
|
|
HKEY hRetKey;
|
|
LPKEYSTRUCT lpKey;
|
|
LONG dwRet;
|
|
int size;
|
|
dprintf_reg(stddeb, "RegQueryValue(%08lX, '%s', %p, %p);\n",
|
|
hKey, lpSubKey, lpVal, lpcb);
|
|
if (lpSubKey == NULL) return ERROR_INVALID_PARAMETER;
|
|
if (lpVal == NULL) return ERROR_INVALID_PARAMETER;
|
|
if (lpcb == NULL) return ERROR_INVALID_PARAMETER;
|
|
if (!*lpcb) return ERROR_INVALID_PARAMETER;
|
|
|
|
if ((dwRet = RegOpenKey(hKey, lpSubKey, &hRetKey)) != ERROR_SUCCESS) {
|
|
fprintf(stderr, "RegQueryValue // key not found !\n");
|
|
return dwRet;
|
|
}
|
|
lpKey = (LPKEYSTRUCT)GlobalLock(hRetKey);
|
|
if (lpKey == NULL) return ERROR_BADKEY;
|
|
if (lpKey->lpValue != NULL) {
|
|
if ((size = strlen(lpKey->lpValue)+1) > *lpcb){
|
|
strncpy(lpVal,lpKey->lpValue,*lpcb-1);
|
|
lpVal[*lpcb-1] = 0;
|
|
} else {
|
|
strcpy(lpVal,lpKey->lpValue);
|
|
*lpcb = size;
|
|
}
|
|
} else {
|
|
*lpVal = 0;
|
|
*lpcb = (LONG)1;
|
|
}
|
|
dprintf_reg(stddeb,"RegQueryValue // return '%s' !\n", lpVal);
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* RegEnumKey [SHELL.7]
|
|
*/
|
|
LONG RegEnumKey(HKEY hKey, DWORD dwSubKey, LPSTR lpBuf, DWORD dwSize)
|
|
{
|
|
LPKEYSTRUCT lpKey;
|
|
LONG dwRet;
|
|
LONG len;
|
|
|
|
dwRet = SHELL_RegCheckForRoot();
|
|
if (dwRet != ERROR_SUCCESS) return dwRet;
|
|
dprintf_reg(stddeb, "RegEnumKey(%08lX, %ld)\n", hKey, dwSubKey);
|
|
if (lpBuf == NULL) return ERROR_INVALID_PARAMETER;
|
|
switch(hKey) {
|
|
case 0:
|
|
lpKey = lphTopKey; break;
|
|
case HKEY_CLASSES_ROOT: /* == 1 */
|
|
lpKey = lphRootKey; break;
|
|
default:
|
|
dprintf_reg(stddeb,"RegEnumKey // specific key = %08lX !\n", hKey);
|
|
lpKey = (LPKEYSTRUCT)GlobalLock(hKey);
|
|
}
|
|
|
|
lpKey = lpKey->lpSubLvl;
|
|
while(lpKey != NULL){
|
|
if (!dwSubKey){
|
|
len = min(dwSize-1,strlen(lpKey->lpSubKey));
|
|
strncpy(lpBuf,lpKey->lpSubKey,len);
|
|
lpBuf[len] = 0;
|
|
dprintf_reg(stddeb, "RegEnumKey: found %s\n",lpBuf);
|
|
return ERROR_SUCCESS;
|
|
}
|
|
dwSubKey--;
|
|
lpKey = lpKey->lpNextKey;
|
|
}
|
|
dprintf_reg(stddeb, "RegEnumKey: key not found!\n");
|
|
return ERROR_INVALID_PARAMETER;
|
|
}
|
|
|
|
/*************************************************************************
|
|
* DragAcceptFiles [SHELL.9]
|
|
*/
|
|
void DragAcceptFiles(HWND hWnd, BOOL b)
|
|
{
|
|
dprintf_reg(stdnimp, "DragAcceptFiles : Empty Stub !!!\n");
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* DragQueryFile [SHELL.11]
|
|
*/
|
|
void DragQueryFile(HDROP h, UINT u, LPSTR u2, UINT u3)
|
|
{
|
|
dprintf_reg(stdnimp, "DragQueryFile : Empty Stub !!!\n");
|
|
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* DragFinish [SHELL.12]
|
|
*/
|
|
void DragFinish(HDROP h)
|
|
{
|
|
dprintf_reg(stdnimp, "DragFinish : Empty Stub !!!\n");
|
|
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* DragQueryPoint [SHELL.13]
|
|
*/
|
|
BOOL DragQueryPoint(HDROP h, POINT FAR *p)
|
|
{
|
|
dprintf_reg(stdnimp, "DragQueryPoinyt : Empty Stub !!!\n");
|
|
return FALSE;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* ShellExecute [SHELL.20]
|
|
*/
|
|
HINSTANCE ShellExecute(HWND hWnd, LPCSTR lpOperation, LPCSTR lpFile, LPCSTR lpParameters, LPCSTR lpDirectory, int iShowCmd)
|
|
{
|
|
dprintf_reg(stdnimp, "ShellExecute // hWnd=%04X\n", hWnd);
|
|
dprintf_reg(stdnimp, "ShellExecute // lpOperation='%s'\n", lpOperation);
|
|
dprintf_reg(stdnimp, "ShellExecute // lpFile='%s'\n", lpFile);
|
|
dprintf_reg(stdnimp, "ShellExecute // lpParameters='%s'\n", lpParameters);
|
|
dprintf_reg(stdnimp, "ShellExecute // lpDirectory='%s'\n", lpDirectory);
|
|
dprintf_reg(stdnimp, "ShellExecute // iShowCmd=%04X\n", iShowCmd);
|
|
return 2; /* file not found */
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* FindExecutable [SHELL.21]
|
|
*/
|
|
HINSTANCE FindExecutable(LPCSTR lpFile, LPCSTR lpDirectory, LPSTR lpResult)
|
|
{
|
|
dprintf_reg(stdnimp, "FindExecutable : Empty Stub !!!\n");
|
|
return 0;
|
|
}
|
|
|
|
char AppName[256], AppMisc[256];
|
|
INT AboutDlgProc(HWND hWnd, WORD msg, WORD wParam, LONG lParam);
|
|
|
|
/*************************************************************************
|
|
* ShellAbout [SHELL.22]
|
|
*/
|
|
INT ShellAbout(HWND hWnd, LPCSTR szApp, LPCSTR szOtherStuff, HICON hIcon)
|
|
{
|
|
/* fprintf(stderr, "ShellAbout ! (%s, %s)\n", szApp, szOtherStuff);*/
|
|
|
|
if (szApp)
|
|
strcpy(AppName, szApp);
|
|
else
|
|
*AppName = 0;
|
|
|
|
if (szOtherStuff)
|
|
strcpy(AppMisc, szOtherStuff);
|
|
else
|
|
*AppMisc = 0;
|
|
|
|
return DialogBoxIndirectPtr( GetWindowWord(hWnd, GWW_HINSTANCE),
|
|
sysres_DIALOG_SHELL_ABOUT_MSGBOX,
|
|
hWnd, GetWndProcEntry16("AboutDlgProc"));
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* AboutDlgProc [SHELL.33]
|
|
*/
|
|
INT AboutDlgProc(HWND hWnd, WORD msg, WORD wParam, LONG lParam)
|
|
{
|
|
char temp[256];
|
|
|
|
switch(msg) {
|
|
case WM_INITDIALOG:
|
|
sprintf(temp, "About %s", AppName);
|
|
SetWindowText(hWnd, temp);
|
|
SetWindowText(GetDlgItem(hWnd,100), AppMisc );
|
|
break;
|
|
|
|
case WM_COMMAND:
|
|
switch (wParam) {
|
|
case IDOK:
|
|
EndDialog(hWnd, TRUE);
|
|
return TRUE;
|
|
}
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
/*************************************************************************
|
|
* ExtractIcon [SHELL.34]
|
|
*/
|
|
HICON ExtractIcon(HINSTANCE hInst, LPCSTR lpszExeFileName, UINT nIconIndex)
|
|
{
|
|
int count;
|
|
HICON hIcon = 0;
|
|
HINSTANCE hInst2 = hInst;
|
|
dprintf_reg(stddeb, "ExtractIcon(%04X, '%s', %d\n",
|
|
hInst, lpszExeFileName, nIconIndex);
|
|
if (lpszExeFileName != NULL) {
|
|
hInst2 = LoadLibrary(lpszExeFileName);
|
|
}
|
|
if (hInst2 != 0 && nIconIndex == (UINT)-1) {
|
|
#if 0
|
|
count = GetRsrcCount(hInst2, NE_RSCTYPE_GROUP_ICON);
|
|
dprintf_reg(stddeb, "ExtractIcon // '%s' has %d icons !\n", lpszExeFileName, count);
|
|
return (HICON)count;
|
|
#endif
|
|
}
|
|
if (hInst2 != hInst && hInst2 != 0) {
|
|
FreeLibrary(hInst2);
|
|
}
|
|
return hIcon;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* ExtractAssociatedIcon [SHELL.36]
|
|
*/
|
|
HICON ExtractAssociatedIcon(HINSTANCE hInst,LPSTR lpIconPath, LPWORD lpiIcon)
|
|
{
|
|
dprintf_reg(stdnimp, "ExtractAssociatedIcon : Empty Stub !!!\n");
|
|
return 0;
|
|
}
|
|
|
|
/*************************************************************************
|
|
* RegisterShellHook [SHELL.102]
|
|
*/
|
|
int RegisterShellHook(void *ptr)
|
|
{
|
|
dprintf_reg(stdnimp, "RegisterShellHook : Empty Stub !!!\n");
|
|
return 0;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* ShellHookProc [SHELL.103]
|
|
*/
|
|
int ShellHookProc(void)
|
|
{
|
|
dprintf_reg(stdnimp, "ShellHookProc : Empty Stub !!!\n");
|
|
return 0;
|
|
}
|