mirror of
https://github.com/reactos/wine.git
synced 2024-12-11 05:14:25 +00:00
b7258befe0
Thu Aug 31 17:19:57 1995 Alexandre Julliard <julliard@sunsite.unc.edu> * [Configure] Added compile-time option for IPC. * [configure.in] Added command-line options for language, IPC and malloc debugging. * [controls/menu.c] WM_MENUSELECT was sometimes sent to the wrong window. * [debugger/break.c] For the 'next' command, only step over instruction that require it. This allows 'next' to do the right thing with jmp and ret instructions. * [ipc/*.c] [memory/atom.c] [memory/global.c] IPC can now be configured out at compile-time. * [loader/task.c] Bug fix in TASK_Reschedule() that could cause a task to be deleted twice. * [miscemu/dosmem.c] (New file) Partial emulation of the BIOS data segment. * [miscemu/instr.c] Trap attempts to access selector 0x40 and remap the access to segment __0040H. * [tools/build.c] Fixed bug in CallTo32_LargeStack() that caused problems when compiling Wine with the -fomit-frame-pointer option. * [windows/message.c] Fixed bug in hardware event handling that could cause some events to get ignored. Sat Aug 26 13:12:59 IST 1995 Michael Veksler <mveksler@vnet.ibm.com> * [ipc/README] [ipc/dde.tex] LaTeX documentation for the ipc and DDE stuff. Wed Aug 23 22:01:23 GMT 1995 Michael Veksler <mveksler@vnet.ibm.com> * [ipc/Imakefile] [ipc/wine_test_stub.c] Fixed IPC testing. Now it can be compiled with "make tests" Wed Aug 23 21:04:14 1995 Fons Botman <botman@wab-tis.rabobank.nl> * [if1632/kernel.spec] [include/windows.h] [misc/main.c] Added GetWinDebugInfo/SetWinDebugInfo stub for player.exe Sun Aug 20 13:49:42 1995 Marcus Meissner <msmeissn@faui01.informatik.uni-erlangen.de> * [miscemu/int21.c] Misc fix to int21,ah=40 (write) to match _lwrite(). AX=0x440A (check if handle is remote) added. * [multimedia/mmsystem.c] Moved mciSendString to mcistring.c. * [multimedia/mcistring.c] New file, string interface for MCI (not complete, not thoroughly tested). * [multimedia/audio.c] IOCTL prints errors; one paranoid check disabled. * [misc/file.c] Misc operator precedence fixes. * [if1632/gdi.spec] [objects/bitblt.c] Stub for FastWindowFrame (parameters not correct). Sat Aug 19 01:31:23 1995 Graham Menhennitt <gfm@werple.mira.net.au> * [loader/ne_image.c] Preliminary support for iterated segments. Sat Aug 19 00:43:04 1995 Andrew Taylor (andrew@riscan.com) * [windows/mapping.c] In function MAPPING_FixIsotropic(), VportExt[XY] is multiplied by the absolute value of (ydim / xdim) or (xdim / ydim). Thu Aug 15 23:00:16 Gregory Trubetskoy <grisha@mira.com> * [objects/oembitmap.c] Added some includes for Windows 95. * [include/sysmetrics.h] Added some sysmetrics for Windows 95. * [include/bitmaps/*95] New files: obm_close_95, obm_closed_95, obm_reduce_95, obm_reduced_95 obm_zoom_95, obm_zoomd_95 - these are some pixmaps for Windows 95. Thu Aug 10 12:00:00 1995 Jan Willamowius (jan@janhh.shnet.org) * [misc/shell.c] [rc/sysres*.rc] The caption of the ShellAbout dialog box is language specific and should be defined in the resources.
562 lines
16 KiB
C
562 lines
16 KiB
C
/*
|
|
* Shell Library Functions
|
|
*/
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <ctype.h>
|
|
#include "windows.h"
|
|
#include "shell.h"
|
|
#include "neexe.h"
|
|
#include "selectors.h"
|
|
#include "../rc/sysres.h"
|
|
#include "dlgs.h"
|
|
#include "dialog.h"
|
|
#include "stddebug.h"
|
|
#include "debug.h"
|
|
|
|
LPKEYSTRUCT lphRootKey = NULL,lphTopKey = NULL;
|
|
|
|
static char RootKeyName[]=".classes", TopKeyName[] = "[top-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,lpNextKey;
|
|
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 (lphKey == NULL) return ERROR_INVALID_PARAMETER;
|
|
switch(hKey) {
|
|
case 0:
|
|
lpKey = lphTopKey; break;
|
|
case HKEY_CLASSES_ROOT: /* == 1 */
|
|
case 0x80000000:
|
|
lpKey = lphRootKey; break;
|
|
default:
|
|
dprintf_reg(stddeb,"RegOpenKey // specific key = %08lX !\n", hKey);
|
|
lpKey = (LPKEYSTRUCT)GlobalLock(hKey);
|
|
}
|
|
if (lpSubKey == NULL || !*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++;
|
|
|
|
lpNextKey = lpKey->lpSubLvl;
|
|
while(lpKey != NULL && strcmp(lpKey->lpSubKey, str) != 0) {
|
|
lpKey = lpNextKey;
|
|
if (lpKey) lpNextKey = 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 (lphKey == NULL) return ERROR_INVALID_PARAMETER;
|
|
switch(hKey) {
|
|
case 0:
|
|
lpKey = lphTopKey; break;
|
|
case HKEY_CLASSES_ROOT: /* == 1 */
|
|
case 0x80000000:
|
|
lpKey = lphRootKey; break;
|
|
default:
|
|
dprintf_reg(stddeb,"RegCreateKey // specific key = %08lX !\n", hKey);
|
|
lpKey = (LPKEYSTRUCT)GlobalLock(hKey);
|
|
}
|
|
if (lpSubKey == NULL || !*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_SUCCESS;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* RegDeleteKey [SHELL.4]
|
|
*/
|
|
LONG RegDeleteKey(HKEY hKey, LPCSTR lpSubKey)
|
|
{
|
|
dprintf_reg(stdnimp, "EMPTY STUB !!! RegDeleteKey(%08lX, '%s');\n",
|
|
hKey, lpSubKey);
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* 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 */
|
|
case 0x80000000:
|
|
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)
|
|
{
|
|
fprintf(stdnimp, "DragAcceptFiles : Empty Stub !!!\n");
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* DragQueryFile [SHELL.11]
|
|
*/
|
|
void DragQueryFile(HDROP h, UINT u, LPSTR u2, UINT u3)
|
|
{
|
|
fprintf(stdnimp, "DragQueryFile : Empty Stub !!!\n");
|
|
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* DragFinish [SHELL.12]
|
|
*/
|
|
void DragFinish(HDROP h)
|
|
{
|
|
fprintf(stdnimp, "DragFinish : Empty Stub !!!\n");
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* DragQueryPoint [SHELL.13]
|
|
*/
|
|
BOOL DragQueryPoint(HDROP h, POINT FAR *p)
|
|
{
|
|
fprintf(stdnimp, "DragQueryPoint : Empty Stub !!!\n");
|
|
return FALSE;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* ShellExecute [SHELL.20]
|
|
*/
|
|
HINSTANCE ShellExecute(HWND hWnd, LPCSTR lpOperation, LPCSTR lpFile, LPCSTR lpParameters, LPCSTR lpDirectory, int iShowCmd)
|
|
{
|
|
char cmd[400];
|
|
char *p,*x;
|
|
long len;
|
|
char subclass[200];
|
|
/* OK. We are supposed to lookup the program associated with lpFile,
|
|
* then to execute it using that program. If lpFile is a program,
|
|
* we have to pass the parameters. If an instance is already running,
|
|
* we might have to send DDE commands.
|
|
*/
|
|
dprintf_exec(stddeb, "ShellExecute(%4X,'%s','%s','%s','%s',%x)\n",
|
|
hWnd, lpOperation ? lpOperation:"<null>", lpFile ? lpFile:"<null>",
|
|
lpParameters ? lpParameters : "<null>",
|
|
lpDirectory ? lpDirectory : "<null>", iShowCmd);
|
|
if (lpFile==NULL) return 0; /* should not happen */
|
|
if (lpOperation==NULL) /* default is open */
|
|
lpOperation="open";
|
|
p=strrchr(lpFile,'.');
|
|
if (p!=NULL) {
|
|
x=p; /* the suffixes in the register database are lowercased */
|
|
while (*x) {*x=tolower(*x);x++;}
|
|
}
|
|
if (p==NULL || !strcmp(p,".exe")) {
|
|
p=".exe";
|
|
if (lpParameters) {
|
|
sprintf(cmd,"%s %s",lpFile,lpParameters);
|
|
} else {
|
|
strcpy(cmd,lpFile);
|
|
}
|
|
} else {
|
|
len=200;
|
|
if (RegQueryValue(HKEY_CLASSES_ROOT,p,subclass,&len)==ERROR_SUCCESS) {
|
|
if (len>20)
|
|
fprintf(stddeb,"ShellExecute:subclass with len %ld? (%s), please report.\n",len,subclass);
|
|
subclass[len]='\0';
|
|
strcat(subclass,"\\shell\\");
|
|
strcat(subclass,lpOperation);
|
|
strcat(subclass,"\\command");
|
|
dprintf_exec(stddeb,"ShellExecute:looking for %s.\n",subclass);
|
|
len=400;
|
|
if (RegQueryValue(HKEY_CLASSES_ROOT,subclass,cmd,&len)==ERROR_SUCCESS) {
|
|
char *t;
|
|
dprintf_exec(stddeb,"ShellExecute:...got %s\n",cmd);
|
|
cmd[len]='\0';
|
|
t=strstr(cmd,"%1");
|
|
if (t==NULL) {
|
|
strcat(cmd," ");
|
|
strcat(cmd,lpFile);
|
|
} else {
|
|
char *s;
|
|
s=malloc(len+strlen(lpFile)+10);
|
|
strncpy(s,cmd,t-cmd);
|
|
strcat(s,lpFile);
|
|
strcat(s,t+2);
|
|
strcpy(cmd,s);
|
|
free(s);
|
|
}
|
|
/* does this use %x magic too? */
|
|
if (lpParameters) {
|
|
strcat(cmd," ");
|
|
strcat(cmd,lpParameters);
|
|
}
|
|
} else {
|
|
fprintf(stddeb,"ShellExecute: No %s\\shell\\%s\\command found for \"%s\" suffix.\n",subclass,lpOperation,p);
|
|
return 14; /* unknown type */
|
|
}
|
|
} else {
|
|
fprintf(stddeb,"ShellExecute: No operation found for \"%s\" suffix.\n",p);
|
|
return 14; /* file not found */
|
|
}
|
|
}
|
|
return WinExec(cmd,iShowCmd);
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* FindExecutable [SHELL.21]
|
|
*/
|
|
HINSTANCE FindExecutable(LPCSTR lpFile, LPCSTR lpDirectory, LPSTR lpResult)
|
|
{
|
|
fprintf(stdnimp, "FindExecutable : Empty Stub !!!\n");
|
|
return 0;
|
|
}
|
|
|
|
static char AppName[512], AppMisc[512];
|
|
|
|
/*************************************************************************
|
|
* AboutDlgProc [SHELL.33]
|
|
*/
|
|
INT AboutDlgProc(HWND hWnd, WORD msg, WORD wParam, LONG lParam)
|
|
{
|
|
char Template[512], AppTitle[512];
|
|
|
|
switch(msg) {
|
|
case WM_INITDIALOG:
|
|
SendDlgItemMessage(hWnd,stc1,STM_SETICON,LOWORD(lParam),0);
|
|
GetWindowText(hWnd, Template, 511);
|
|
sprintf(AppTitle, Template, AppName);
|
|
SetWindowText(hWnd, AppTitle);
|
|
SetWindowText(GetDlgItem(hWnd,100), AppMisc);
|
|
return 1;
|
|
|
|
case WM_COMMAND:
|
|
switch (wParam) {
|
|
case IDOK:
|
|
EndDialog(hWnd, TRUE);
|
|
return TRUE;
|
|
}
|
|
break;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
/*************************************************************************
|
|
* ShellAbout [SHELL.22]
|
|
*/
|
|
INT ShellAbout(HWND hWnd, LPCSTR szApp, LPCSTR szOtherStuff, HICON hIcon)
|
|
{
|
|
if (szApp) {
|
|
strcpy(AppName, szApp);
|
|
} else {
|
|
*AppName = 0;
|
|
}
|
|
if (szOtherStuff) {
|
|
strcpy(AppMisc, szOtherStuff);
|
|
} else {
|
|
*AppMisc = 0;
|
|
}
|
|
if (!hIcon) {
|
|
hIcon = LoadIcon(0,MAKEINTRESOURCE(OIC_WINEICON));
|
|
}
|
|
return DialogBoxIndirectParamPtr(GetWindowWord(hWnd, GWW_HINSTANCE),
|
|
sysres_DIALOG_SHELL_ABOUT_MSGBOX,
|
|
hWnd, GetWndProcEntry16("AboutDlgProc"),
|
|
hIcon);
|
|
}
|
|
|
|
/*************************************************************************
|
|
* ExtractIcon [SHELL.34]
|
|
*/
|
|
HICON ExtractIcon(HINSTANCE hInst, LPCSTR lpszExeFileName, UINT nIconIndex)
|
|
{
|
|
HICON hIcon = 0;
|
|
HINSTANCE hInst2 = hInst;
|
|
dprintf_reg(stddeb, "ExtractIcon(%04X, '%s', %d\n",
|
|
hInst, lpszExeFileName, nIconIndex);
|
|
return 0;
|
|
if (lpszExeFileName != NULL) {
|
|
hInst2 = LoadModule(lpszExeFileName,(LPVOID)-1);
|
|
}
|
|
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;
|
|
}
|
|
|
|
/*************************************************************************
|
|
* DoEnvironmentSubst [SHELL.37]
|
|
*/
|
|
DWORD DoEnvironmentSubst(LPSTR str,WORD len)
|
|
{
|
|
dprintf_reg(stdnimp, "DoEnvironmentSubst(%s,%x): Empyt Stub !!!\n",str,len);
|
|
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;
|
|
}
|