mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
3f2abfaa0a
Tue Aug 9 23:58:29 MET DST 1994 <erik@hacktic.nl> * [misc/file.c] OpenFile(): Completly rewritten. * [miscemu/int21.c] CreateFile(): Fixed wrong mode in call to open. OpenExistingFile(): Implemented file sharing. FindNext(): Fixed. CreateNewFile(): Fixed wrong mode in call to open. fLock(): Added to handle record locking. GetFileAttribute(): Added. As a result, AH = 0x5c, 0x09, and 0x0b were changed. * [miscemu/int2f.c] AH = 0x10: SHARE installation check * [loader/resource.c] AccessResource(): Fixed. A new file descriptor will be returned by every call to AccessResource(). * [windows/utility.c] wvsprintf(): Fixed. * [controls/menu.c] FindMenuItem(): Fixed (handling for nPos == -1 added). * [windows/win.c] CreateWindowEx(): Added call to WINPOS_GetMinMaxInfo. * [Configure] Added two options for a processor emulator that might be plugged in later.. * [loader/task.c] [include/toolhelp.h] [if1632/toolhelp.spec] CreateNewTask() stores real modulename instead of 'TASKxxxx'. Added TaskFirst(), TaskNext(), TaskFindHandle(). * [memory/global.c] Added stub for MemManInfo(). * [objects/text.c] Added stub for GetTabbedTextExt(). * [miscemu/*] Changed all references to registers. Please don't access the context structure. fix for GetSystemTime() by <jspeter@birch.ee.vt.edu> added. * [misc/lstr.c] Fixed bug in AnsiUpper() & AnsiLower(). * [misc/winsocket.c] bugfix in getsockopt()/setsockopt(): winsock uses different values than unix. * [objects/dib.c] Added DIB_SetImageBits_RLE[48] to support compressed bitmaps. Mon Aug 8 21:12:33 1994 David Metcalfe <david@prism.demon.co.uk> * [controls/edit.c] Added support for WM_COPY, WM_CUT and WM_PASTE messages. * [windows/dialog.c] [windows/defdlg.c] [include/dialog.h] Modified dialog code to create new heap for edit controls unless DS_LOCALEDIT style is set. Thu Aug 4 18:50:56 1994 Alexandre Julliard (julliard@lamisun.epfl.ch) * [controls/button.c] [controls/edit.c] [controls/static.c] Removed unneeded GlobalUnlock() calls. * [controls/menu.c] [include/menu.h] Lots of changes, fixed a lot of old bugs and introduced a lot of new ones :-) - Changed message loop to use MSG_GetInternalMessage(). - Fixed a bug that caused the main window to lose activation when displaying a menu. - Correctly send initialisation messages (WM_INITMENUPOPUP). - Implemented EndMenu() and LookupMenuHandle(). - Changed internal structures to be as compatible as possible with MS-Windows. - Allocated everything on the USER heap instead of the global heap. - Prefixed all internal function names with MENU_ and declared them static. - Moved "About Wine..." handling to NC_HandleSysCommand(). - Multi-line menus should now work correctly. * [loader/resource.c] [objects/bitmap.c] Added the possibility to create OEM bitmaps directly as X bitmaps. * [objects/dcvalues.c] [windows/dc.c] Fixed GetDCOrg() to return screen coordinates. * [windows/message.c] Fixed double-click checks when the message is not removed from the queue. Fixed MSG_GetInternalMessage() to send WM_ENTERIDLE messages. * [windows/nonclient.c] Bug fix in system menu hit-test calculation. A few changes for new menu functions. Thu Aug 11 17:51:02 1994 Thomas Sandford <t.d.g.sandford@bradford.ac.uk> * [controls/edit.c] Bug fix in Edit_NCCreateMessage es->textlen was being used before being set * [controls/menu.c] Bug fix in MENU_DrawMenuItem don't try to write text if NULL pointer passed
310 lines
8.0 KiB
C
310 lines
8.0 KiB
C
/* SPY.C
|
|
*
|
|
* Copyright 1994, Bob Amstadt
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <X11/Xlib.h>
|
|
#include <X11/Xresource.h>
|
|
#include <string.h>
|
|
#include "wineopts.h"
|
|
#include "windows.h"
|
|
#include "wine.h"
|
|
#include "options.h"
|
|
|
|
#ifndef NOSPY
|
|
|
|
#define SPY_MAX_MSGNUM 0x0232
|
|
|
|
const char *MessageTypeNames[SPY_MAX_MSGNUM + 1] =
|
|
{
|
|
"WM_NULL", /* 0x00 */
|
|
"WM_CREATE",
|
|
"WM_DESTROY",
|
|
"WM_MOVE",
|
|
"WM_UNUSED0",
|
|
"WM_SIZE",
|
|
"WM_ACTIVATE",
|
|
"WM_SETFOCUS",
|
|
"WM_KILLFOCUS",
|
|
"WM_UNUSED1",
|
|
"WM_ENABLE",
|
|
"WM_SETREDRAW",
|
|
"WM_SETTEXT",
|
|
"WM_GETTEXT",
|
|
"WM_GETTEXTLENGTH",
|
|
"WM_PAINT",
|
|
"WM_CLOSE", /* 0x10 */
|
|
"WM_QUERYENDSESSION",
|
|
"WM_QUIT",
|
|
"WM_QUERYOPEN",
|
|
"WM_ERASEBKGND",
|
|
"WM_SYSCOLORCHANGE",
|
|
"WM_ENDSESSION",
|
|
"WM_UNUSED2",
|
|
"WM_SHOWWINDOW",
|
|
"WM_CTLCOLOR",
|
|
"WM_WININICHANGE",
|
|
"WM_DEVMODECHANGE",
|
|
"WM_ACTIVATEAPP",
|
|
"WM_FONTCHANGE",
|
|
"WM_TIMECHANGE",
|
|
"WM_CANCELMODE",
|
|
"WM_SETCURSOR", /* 0x20 */
|
|
"WM_MOUSEACTIVATE",
|
|
"WM_CHILDACTIVATE",
|
|
"WM_QUEUESYNC",
|
|
"WM_GETMINMAXINFO",
|
|
"WM_UNUSED3",
|
|
"WM_PAINTICON",
|
|
"WM_ICONERASEBKGND",
|
|
"WM_NEXTDLGCTL",
|
|
"WM_UNUSED4",
|
|
"WM_SPOOLERSTATUS",
|
|
"WM_DRAWITEM",
|
|
"WM_MEASUREITEM",
|
|
"WM_DELETEITEM",
|
|
"WM_VKEYTOITEM",
|
|
"WM_CHARTOITEM",
|
|
"WM_SETFONT", /* 0x30 */
|
|
"WM_GETFONT", NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x40 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL,
|
|
"WM_WINDOWPOSCHANGING", /* 0x0046 */
|
|
"WM_WINDOWPOSCHANGED", /* 0x0047 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x0050 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x0060 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x0070 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
NULL, /* 0x0080 */
|
|
"WM_NCCREATE", /* 0x0081 */
|
|
"WM_NCDESTROY", /* 0x0082 */
|
|
"WM_NCCALCSIZE", /* 0x0083 */
|
|
"WM_NCHITTEST", /* 0x0084 */
|
|
"WM_NCPAINT", /* 0x0085 */
|
|
"WM_NCACTIVATE", /* 0x0086 */
|
|
"WM_GETDLGCODE", /* 0x0087 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x0090 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x00A0 */
|
|
"WM_NCMOUSEMOVE", /* 0x00A0 */
|
|
"WM_NCLBUTTONDOWN", /* 0x00A1 */
|
|
"WM_NCLBUTTONUP", /* 0x00A2 */
|
|
"WM_NCLBUTTONDBLCLK", /* 0x00A3 */
|
|
"WM_NCRBUTTONDOWN", /* 0x00A4 */
|
|
"WM_NCRBUTTONUP", /* 0x00A5 */
|
|
"WM_NCRBUTTONDBLCLK", /* 0x00A6 */
|
|
"WM_NCMBUTTONDOWN", /* 0x00A7 */
|
|
"WM_NCMBUTTONUP", /* 0x00A8 */
|
|
"WM_NCMBUTTONDBLCLK", /* 0x00A9 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x00B0 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x00C0 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x00D0 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x00E0 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x00F0 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
"WM_KEYDOWN", /* 0x0100 */
|
|
"WM_KEYUP", /* 0x0101 */
|
|
"WM_CHAR", /* 0x0102 */
|
|
"WM_DEADCHAR", /* 0x0103 */
|
|
"WM_SYSKEYDOWN", /* 0x0104 */
|
|
"WM_SYSKEYUP", /* 0x0105 */
|
|
"WM_SYSCHAR", /* 0x0106 */
|
|
"WM_SYSDEADCHAR", /* 0x0107 */
|
|
"WM_KEYLAST", /* 0x0108 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
"WM_INITDIALOG", /* 0x0110 */
|
|
"WM_COMMAND", /* 0x0111 */
|
|
"WM_SYSCOMMAND", /* 0x0112 */
|
|
"WM_TIMER", /* 0x0113 */
|
|
"WM_HSCROLL", /* 0x0114 */
|
|
"WM_VSCROLL", /* 0x0115 */
|
|
"WM_INITMENU", /* 0x0116 */
|
|
"WM_INITMENUPOPUP", /* 0x0117 */
|
|
"WM_SYSTIMER", /* 0x0118 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x0120 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x0130 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x0140 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x0150 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x0160 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x0170 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x0180 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x0190 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x01A0 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x01B0 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x01C0 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x01D0 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x01E0 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x01F0 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
"WM_MOUSEMOVE", /* 0x0200 */
|
|
"WM_LBUTTONDOWN", /* 0x0201 */
|
|
"WM_LBUTTONUP", /* 0x0202 */
|
|
"WM_LBUTTONDBLCLK", /* 0x0203 */
|
|
"WM_RBUTTONDOWN", /* 0x0204 */
|
|
"WM_RBUTTONUP", /* 0x0205 */
|
|
"WM_RBUTTONDBLCLK", /* 0x0206 */
|
|
"WM_MBUTTONDOWN", /* 0x0207 */
|
|
"WM_MBUTTONUP", /* 0x0208 */
|
|
"WM_MBUTTONDBLCLK", /* 0x0209 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
"WM_PARENTNOTIFY", /* 0x0210 */
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
/* 0x0220 */
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
|
NULL, /* 0x0230 */
|
|
"WM_ENTERSIZEMOVE", /* 0x0231 */
|
|
"WM_EXITSIZEMOVE" /* 0x0232 */
|
|
};
|
|
|
|
char SpyFilters[256];
|
|
char SpyIncludes[256];
|
|
|
|
#endif /* NOSPY */
|
|
|
|
/**********************************************************************
|
|
* SpyMessage
|
|
*/
|
|
void SpyMessage(HWND hwnd, WORD msg, WORD wParam, LONG lParam)
|
|
{
|
|
#ifndef NOSPY
|
|
char msg_name[80];
|
|
|
|
if (SpyFp == NULL)
|
|
return;
|
|
|
|
if (msg > SPY_MAX_MSGNUM || MessageTypeNames[msg] == NULL)
|
|
sprintf(msg_name, "%04x", msg);
|
|
else
|
|
strcpy(msg_name, MessageTypeNames[msg]);
|
|
|
|
strcat(msg_name, ";");
|
|
|
|
if ((strlen(SpyIncludes) == 0 || strstr(SpyIncludes, msg_name) != NULL) &&
|
|
strstr(SpyFilters, msg_name) == NULL)
|
|
{
|
|
msg_name[strlen(msg_name) - 1] = '\0';
|
|
fprintf(SpyFp, "%04.4x %20.20s %04.4x %04.4x %08.8x\n",
|
|
hwnd, msg_name, msg, wParam, lParam);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
/**********************************************************************
|
|
* SpyInit
|
|
*/
|
|
void SpyInit(void)
|
|
{
|
|
char filename[100];
|
|
|
|
if (SpyFp != NULL)
|
|
return;
|
|
|
|
if (Options.spyFilename == NULL)
|
|
{
|
|
GetPrivateProfileString("spy", "file", "", filename, sizeof(filename),
|
|
WINE_INI);
|
|
}
|
|
else
|
|
strncpy(filename, Options.spyFilename, 100);
|
|
|
|
if (strcasecmp(filename, "CON") == 0)
|
|
SpyFp = stdout;
|
|
else if (strlen(filename))
|
|
SpyFp = fopen(filename, "a");
|
|
else
|
|
{
|
|
SpyFp = NULL;
|
|
return;
|
|
}
|
|
|
|
GetPrivateProfileString("spy", "exclude", "", SpyFilters,
|
|
sizeof(SpyFilters), WINE_INI);
|
|
GetPrivateProfileString("spy", "include", "", SpyIncludes,
|
|
sizeof(SpyIncludes), WINE_INI);
|
|
}
|