New debug scheme with explicit debug channels declaration.
This commit is contained in:
parent
3c9cf42d00
commit
b4b9fae671
|
@ -16,6 +16,8 @@
|
|||
#include "config.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(console)
|
||||
|
||||
static void GENERIC_MoveLine(char row1, char row2, char col1, char col2);
|
||||
static void GENERIC_ClearLine(char row, char col1, char col2, int bgcolor,
|
||||
int attribute);
|
||||
|
|
|
@ -24,6 +24,8 @@
|
|||
#include "debug.h"
|
||||
#include "options.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(console)
|
||||
|
||||
#undef ERR /* Use ncurses's err() */
|
||||
#ifdef HAVE_NCURSES_H
|
||||
# include <ncurses.h>
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#include "options.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(console)
|
||||
|
||||
char console_xterm_prog[80];
|
||||
|
||||
static BOOL wine_create_console(FILE **master, FILE **slave, int *pid);
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
#include "debug.h"
|
||||
#include "tweak.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(combo)
|
||||
|
||||
/* bits in the dwKeyData */
|
||||
#define KEYDATA_ALT 0x2000
|
||||
#define KEYDATA_PREVSTATE 0x4000
|
||||
|
|
|
@ -22,6 +22,10 @@
|
|||
#include "callback.h"
|
||||
#include "tweak.h"
|
||||
|
||||
DECLARE_DEBUG_CHANNEL(combo)
|
||||
DECLARE_DEBUG_CHANNEL(edit)
|
||||
DECLARE_DEBUG_CHANNEL(relay)
|
||||
|
||||
#define BUFLIMIT_MULTI 65534 /* maximum buffer size (not including '\0')
|
||||
FIXME: BTW, new specs say 65535 (do you dare ???) */
|
||||
#define BUFLIMIT_SINGLE 32766 /* maximum buffer size (not including '\0') */
|
||||
|
|
|
@ -17,6 +17,9 @@
|
|||
#include "debug.h"
|
||||
#include "tweak.h"
|
||||
|
||||
DECLARE_DEBUG_CHANNEL(combo)
|
||||
DECLARE_DEBUG_CHANNEL(listbox)
|
||||
|
||||
/* Unimplemented yet:
|
||||
* - LBS_NOSEL
|
||||
* - LBS_USETABSTOPS
|
||||
|
|
|
@ -32,6 +32,8 @@
|
|||
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(menu)
|
||||
|
||||
|
||||
/* internal popup menu window messages */
|
||||
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
#include "win.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(scroll)
|
||||
|
||||
|
||||
static HBITMAP hUpArrow = 0;
|
||||
static HBITMAP hDnArrow = 0;
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
#include "debug.h"
|
||||
#include "tweak.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(static)
|
||||
|
||||
static void STATIC_PaintTextfn( WND *wndPtr, HDC hdc );
|
||||
static void STATIC_PaintRectfn( WND *wndPtr, HDC hdc );
|
||||
static void STATIC_PaintIconfn( WND *wndPtr, HDC hdc );
|
||||
|
|
|
@ -8,6 +8,8 @@
|
|||
#include "wine/winuser16.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(graphics)
|
||||
|
||||
static const WORD wPattern_AA55[8] = { 0xaaaa, 0x5555, 0xaaaa, 0x5555,
|
||||
0xaaaa, 0x5555, 0xaaaa, 0x5555 };
|
||||
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
#include "wincrypt.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(advapi)
|
||||
|
||||
/******************************************************************************
|
||||
* CryptAcquireContextA
|
||||
* Acquire a crypto provider context handle.
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(advapi)
|
||||
|
||||
/******************************************************************************
|
||||
* BackupEventLog32A [ADVAPI32.15]
|
||||
*/
|
||||
|
|
|
@ -11,6 +11,9 @@
|
|||
#include "ntddk.h"
|
||||
#include "debug.h"
|
||||
|
||||
DECLARE_DEBUG_CHANNEL(advapi)
|
||||
DECLARE_DEBUG_CHANNEL(security)
|
||||
|
||||
#define CallWin32ToNt(func) \
|
||||
{ NTSTATUS ret; \
|
||||
ret = (func); \
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
#include "heap.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(advapi)
|
||||
|
||||
/* FIXME: Where do these belong? */
|
||||
typedef DWORD SERVICE_STATUS_HANDLE;
|
||||
typedef VOID (WINAPI *LPHANDLER_FUNCTION)( DWORD dwControl);
|
||||
|
|
|
@ -14,6 +14,10 @@
|
|||
#include "debugstr.h"
|
||||
#include "debug.h"
|
||||
|
||||
DECLARE_DEBUG_CHANNEL(avifile)
|
||||
DECLARE_DEBUG_CHANNEL(msvideo)
|
||||
DECLARE_DEBUG_CHANNEL(relay)
|
||||
|
||||
typedef struct IAVIStreamImpl {
|
||||
/* IUnknown stuff */
|
||||
ICOM_VTABLE(IAVIStream)* lpvtbl;
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
#include "animate.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(animate)
|
||||
|
||||
#define ANIMATE_GetInfoPtr(hwnd) ((ANIMATE_INFO *)GetWindowLongA (hwnd, 0))
|
||||
|
||||
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#include "comboex.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(comboex)
|
||||
|
||||
#define ID_CB_EDIT 1001
|
||||
|
||||
#define COMBOEX_GetInfoPtr(wndPtr) ((COMBOEX_INFO *)GetWindowLongA (hwnd, 0))
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
#include "heap.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(commctrl)
|
||||
|
||||
|
||||
extern HANDLE COMCTL32_hHeap; /* handle to the private heap */
|
||||
|
||||
|
|
|
@ -33,6 +33,8 @@
|
|||
#include "debug.h"
|
||||
#include "winerror.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(commctrl)
|
||||
|
||||
|
||||
HANDLE COMCTL32_hHeap = (HANDLE)NULL;
|
||||
DWORD COMCTL32_dwProcessesAttached = 0;
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
#include "datetime.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(datetime)
|
||||
|
||||
|
||||
#define DATETIME_GetInfoPtr(hwnd) ((DATETIME_INFO *)GetWindowLongA (hwnd, 0))
|
||||
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
#include "commctrl.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(commctrl)
|
||||
|
||||
|
||||
BOOL WINAPI MakeDragList (HWND hwndLB)
|
||||
{
|
||||
|
|
|
@ -20,6 +20,9 @@
|
|||
#include "flatsb.h"
|
||||
#include "debug.h"
|
||||
|
||||
DECLARE_DEBUG_CHANNEL(commctrl)
|
||||
DECLARE_DEBUG_CHANNEL(datetime)
|
||||
|
||||
|
||||
#define FlatSB_GetInfoPtr(hwnd) ((FLATSB_INFO*)GetWindowLongA (hwnd, 0))
|
||||
|
||||
|
|
|
@ -26,6 +26,8 @@
|
|||
#include "header.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(header)
|
||||
|
||||
|
||||
#define __HDM_LAYOUT_HACK__
|
||||
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#include "hotkey.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(hotkey)
|
||||
|
||||
|
||||
#define HOTKEY_GetInfoPtr(hwnd) ((HOTKEY_INFO *)GetWindowLongA (hwnd, 0))
|
||||
|
||||
|
|
|
@ -36,6 +36,8 @@
|
|||
#include "commctrl.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(imagelist)
|
||||
|
||||
|
||||
#define _MAX(a,b) (((a)>(b))?(a):(b))
|
||||
#define _MIN(a,b) (((a)>(b))?(b):(a))
|
||||
|
|
|
@ -29,6 +29,8 @@
|
|||
#include "heap.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ipaddress)
|
||||
|
||||
|
||||
#define IPADDRESS_GetInfoPtr(hwnd) ((IPADDRESS_INFO *)GetWindowLongA (hwnd, 0))
|
||||
|
||||
|
|
|
@ -53,6 +53,8 @@
|
|||
#include "listview.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(listview)
|
||||
|
||||
/*
|
||||
* constants
|
||||
*/
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
#include "monthcal.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(monthcal)
|
||||
|
||||
|
||||
#define MONTHCAL_GetInfoPtr(hwnd) ((MONTHCAL_INFO *)GetWindowLongA (hwnd, 0))
|
||||
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#include "nativefont.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(nativefont)
|
||||
|
||||
|
||||
#define NATIVEFONT_GetInfoPtr(hwnd) ((NATIVEFONT_INFO *)GetWindowLongA (hwnd, 0))
|
||||
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#include "pager.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(pager)
|
||||
|
||||
|
||||
#define PAGER_GetInfoPtr(hwnd) ((PAGER_INFO *)GetWindowLongA(hwnd, 0))
|
||||
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
#include "progress.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(progress)
|
||||
|
||||
|
||||
/* Control configuration constants */
|
||||
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
#include "propsheet.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(propsheet)
|
||||
|
||||
|
||||
LRESULT WINAPI
|
||||
PROPSHEET_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
|
|
|
@ -26,6 +26,8 @@
|
|||
#include "sysmetrics.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(rebar)
|
||||
|
||||
|
||||
/* fDraw flags */
|
||||
#define DRAW_GRIPPER 1
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
#include "status.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(statusbar)
|
||||
|
||||
/*
|
||||
* Run tests using Waite Group Windows95 API Bible Vol. 1&2
|
||||
* The second cdrom contains executables drawstat.exe,gettext.exe,
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#include "tab.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(tab)
|
||||
|
||||
/******************************************************************************
|
||||
* Positioning constants
|
||||
*/
|
||||
|
|
|
@ -35,6 +35,8 @@
|
|||
#include "toolbar.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(toolbar)
|
||||
|
||||
/* #define __NEW_WRAP_CODE__ */
|
||||
|
||||
#define SEPARATOR_WIDTH 8
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#include "tooltips.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(tooltips)
|
||||
|
||||
#define ID_TIMERSHOW 1 /* show delay timer */
|
||||
#define ID_TIMERPOP 2 /* auto pop timer */
|
||||
#define ID_TIMERLEAVE 3 /* tool leave timer */
|
||||
|
|
|
@ -29,6 +29,8 @@
|
|||
#include "trackbar.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(trackbar)
|
||||
|
||||
|
||||
#define TRACKBAR_GetInfoPtr(wndPtr) ((TRACKBAR_INFO *)GetWindowLongA (hwnd,0))
|
||||
|
||||
|
|
|
@ -46,6 +46,8 @@
|
|||
#include "treeview.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(treeview)
|
||||
|
||||
/* ffs should be in <string.h>. */
|
||||
|
||||
/* Defines, since they do not need to return previous state, and nr
|
||||
|
|
|
@ -38,6 +38,8 @@
|
|||
#include "updown.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(updown)
|
||||
|
||||
/* Control configuration constants */
|
||||
|
||||
#define INITIAL_DELAY 500 /* initial timer until auto-increment kicks in */
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
#include "winproc.h"
|
||||
#include "cderr.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(commdlg)
|
||||
|
||||
/***********************************************************************
|
||||
* ChooseColor (COMMDLG.5)
|
||||
*/
|
||||
|
|
|
@ -24,6 +24,8 @@
|
|||
#include "winproc.h"
|
||||
#include "cderr.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(commdlg)
|
||||
|
||||
static HICON16 hFolder = 0;
|
||||
static HICON16 hFolder2 = 0;
|
||||
static HICON16 hFloppy = 0;
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#include "debug.h"
|
||||
#include "winproc.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(commdlg)
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* FindText16 (COMMDLG.11)
|
||||
|
|
|
@ -24,6 +24,8 @@
|
|||
#include "winproc.h"
|
||||
#include "cderr.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(commdlg)
|
||||
|
||||
static HBITMAP16 hBitmapTT = 0;
|
||||
|
||||
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
#include "debug.h"
|
||||
#include "winproc.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(commdlg)
|
||||
|
||||
|
||||
#define COMDLG32_LAST_ERROR_NOT_ALLOCATED 0xF684F684
|
||||
static DWORD COMDLG32_TlsIndex = COMDLG32_LAST_ERROR_NOT_ALLOCATED;
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
#include "winproc.h"
|
||||
#include "cderr.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(commdlg)
|
||||
|
||||
/***********************************************************************
|
||||
* PrintDlg16 (COMMDLG.20)
|
||||
*/
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
#include "debug.h"
|
||||
#include "imagehlp.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(imagehlp)
|
||||
|
||||
/***********************************************************************
|
||||
* Data
|
||||
*/
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
#include "debug.h"
|
||||
#include "imagehlp.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(imagehlp)
|
||||
|
||||
/***********************************************************************
|
||||
* FindDebugInfoFile32 (IMAGEHLP.5)
|
||||
*/
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
#include "windef.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(imagehlp)
|
||||
|
||||
/**********************************************************************/
|
||||
|
||||
HANDLE IMAGEHLP_hHeap = (HANDLE) NULL;
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
#include "imagehlp.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(imagehlp)
|
||||
|
||||
/***********************************************************************
|
||||
* ImageAddCertificate32 (IMAGEHLP.10)
|
||||
*/
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
#include "debug.h"
|
||||
#include "imagehlp.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(imagehlp)
|
||||
|
||||
/***********************************************************************
|
||||
* BindImage32 (IMAGEHLP.1)
|
||||
*/
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
#include "debug.h"
|
||||
#include "imagehlp.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(imagehlp)
|
||||
|
||||
/***********************************************************************
|
||||
* SymCleanup32 (IMAGEHLP.37)
|
||||
*/
|
||||
|
|
|
@ -9,6 +9,8 @@
|
|||
#include "msacm.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(msacm)
|
||||
|
||||
/***********************************************************************
|
||||
* ACMGETVERSION (MSACM.7)
|
||||
*/
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
#include "msacmdrv.h"
|
||||
#include "winreg.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(msacm)
|
||||
|
||||
/***********************************************************************
|
||||
* acmDriverAddA (MSACM32.2)
|
||||
*/
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
#include "msacmdrv.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(msacm)
|
||||
|
||||
/***********************************************************************
|
||||
* acmFilterChooseA (MSACM32.13)
|
||||
*/
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
#include "msacm.h"
|
||||
#include "msacmdrv.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(msacm)
|
||||
|
||||
/***********************************************************************
|
||||
* acmFormatChooseA (MSACM32.23)
|
||||
*/
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
#include "msacmdrv.h"
|
||||
#include "winversion.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(msacm)
|
||||
|
||||
/**********************************************************************/
|
||||
|
||||
static DWORD MSACM_dwProcessesAttached = 0;
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
#include "msacm.h"
|
||||
#include "msacmdrv.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(msacm)
|
||||
|
||||
/***********************************************************************
|
||||
* acmStreamClose (MSACM32.37)
|
||||
*/
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
|
||||
#include "ntddk.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ntdll)
|
||||
|
||||
/**************************************************************************
|
||||
* NtOpenFile [NTDLL.127]
|
||||
* FUNCTION: Opens a file
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
|
||||
#include "ntddk.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ntdll)
|
||||
|
||||
/* move to winbase.h */
|
||||
typedef VOID (CALLBACK *PTIMERAPCROUTINE)(LPVOID lpArgToCompletionRoutine,DWORD dwTimerLowValue,DWORD dwTimerHighValue);
|
||||
|
||||
|
|
|
@ -8,6 +8,8 @@
|
|||
|
||||
#include "ntddk.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ntdll)
|
||||
|
||||
/* move to somewhere */
|
||||
typedef void * POBJDIR_INFORMATION;
|
||||
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
|
||||
#include "ntddk.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ntdll)
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
* NtCreateKey [NTDLL]
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#include "ntddk.h"
|
||||
#include "winreg.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ntdll)
|
||||
|
||||
|
||||
/*
|
||||
* resource functions
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#include "debug.h"
|
||||
|
||||
#include "ntddk.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ntdll)
|
||||
/*
|
||||
* STRING FUNCTIONS
|
||||
*/
|
||||
|
|
|
@ -25,6 +25,8 @@
|
|||
#include "ntddk.h"
|
||||
#include "winreg.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ntdll)
|
||||
|
||||
/*
|
||||
* SID FUNCTIONS
|
||||
*/
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
|
||||
#include "ntddk.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ntdll)
|
||||
|
||||
/*
|
||||
* Semaphore
|
||||
*/
|
||||
|
|
|
@ -8,11 +8,12 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include <ntddk.h>
|
||||
|
||||
#include <string.h>
|
||||
#include <debug.h>
|
||||
#include <file.h>
|
||||
#include "ntddk.h"
|
||||
#include "debug.h"
|
||||
#include "file.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ntdll)
|
||||
|
||||
#define TICKSPERSEC 10000000
|
||||
#define TICKSPERMSEC 10000
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
#include "debug.h"
|
||||
#include "psapi.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(psapi)
|
||||
|
||||
#include <string.h>
|
||||
|
||||
/***********************************************************************
|
||||
|
|
|
@ -8,6 +8,8 @@
|
|||
#include "ras.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ras)
|
||||
|
||||
/**************************************************************************
|
||||
* RasEnumConnections32A [RASAPI32.544]
|
||||
*/
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
#include "pidl.h"
|
||||
#include "shell32_main.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
#define IDD_TREEVIEW 99
|
||||
|
||||
static HWND hwndTreeView;
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
#include "shlobj.h"
|
||||
#include "shell32_main.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
BOOL HCR_MapTypeToValue ( LPCSTR szExtension, LPSTR szFileType, DWORD len)
|
||||
{ HKEY hkey;
|
||||
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
|
||||
#include "shell32_main.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
/**************************************************************************
|
||||
* IContextMenu Implementation
|
||||
*/
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
#include "shell32_main.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
UINT cfShellIDList=0;
|
||||
UINT cfFileGroupDesc=0;
|
||||
UINT cfFileContents=0;
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
#include "shlguid.h"
|
||||
#include "shell32_main.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
typedef struct tagENUMLIST
|
||||
{
|
||||
struct tagENUMLIST *pNext;
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
#include "pidl.h"
|
||||
#include "shell32_main.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* IExtractIconA implementation
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
#include "pidl.h"
|
||||
#include "shell32_main.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
#pragma pack(1)
|
||||
|
||||
typedef struct
|
||||
|
|
|
@ -24,6 +24,9 @@
|
|||
|
||||
#include "pidl.h"
|
||||
|
||||
DECLARE_DEBUG_CHANNEL(pidl)
|
||||
DECLARE_DEBUG_CHANNEL(shell)
|
||||
|
||||
void pdump (LPCITEMIDLIST pidl)
|
||||
{ DWORD type;
|
||||
CHAR * szData;
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
#include "pidl.h"
|
||||
#include "shell32_main.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
typedef struct
|
||||
{ ICOM_VTABLE(IStream)* lpvtbl;
|
||||
DWORD ref;
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
|
||||
#include "shlguid.h"
|
||||
|
||||
DECLARE_DEBUG_CHANNEL(exec)
|
||||
DECLARE_DEBUG_CHANNEL(shell)
|
||||
|
||||
/*************************************************************************
|
||||
* CommandLineToArgvW [SHELL32.7]
|
||||
*/
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
#include "shell32_main.h"
|
||||
#include "shlguid.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
/* link file formats */
|
||||
|
||||
#pragma (1);
|
||||
|
|
|
@ -25,6 +25,8 @@
|
|||
|
||||
#include "shell32_main.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
/*************************************************************************
|
||||
*
|
||||
*/
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
#include "shlobj.h"
|
||||
#include "shell32_main.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
/*************************************************************************
|
||||
* SHChangeNotifyRegister [SHELL32.2]
|
||||
*
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
#include "shlobj.h"
|
||||
#include "shell32_main.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
/*************************************************************************
|
||||
* PathIsRoot [SHELL32.29]
|
||||
*/
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#include "wine/obj_shellfolder.h"
|
||||
#include "shell32_main.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
/***************************************************************************
|
||||
* IDropTarget interface definition for the ShellFolder
|
||||
*/
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
|
||||
#include "pidl.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
BOOL WINAPI FileMenu_DeleteAllItems (HMENU hMenu);
|
||||
|
||||
/*************************************************************************
|
||||
|
|
|
@ -29,6 +29,8 @@
|
|||
#include "pidl.h"
|
||||
#include "shell32_main.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(shell)
|
||||
|
||||
typedef struct
|
||||
{ ICOM_VTABLE(IShellView)* lpvtbl;
|
||||
DWORD ref;
|
||||
|
|
|
@ -9,6 +9,8 @@
|
|||
#include "tapi.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(tapi)
|
||||
|
||||
DWORD WINAPI tapiGetLocationInfo(LPSTR lpszCountryCode, LPSTR lpszCityCode)
|
||||
{
|
||||
char temp[30];
|
||||
|
|
|
@ -12,6 +12,9 @@
|
|||
#include "tapi.h"
|
||||
#include "debug.h"
|
||||
|
||||
DECLARE_DEBUG_CHANNEL(comm)
|
||||
DECLARE_DEBUG_CHANNEL(tapi)
|
||||
|
||||
DWORD WINAPI lineAccept(HCALL hCall, LPCSTR lpsUserUserInfo, DWORD dwSize)
|
||||
{
|
||||
FIXME(tapi, "(%04x, %s, %ld): stub.\n", hCall, lpsUserUserInfo, dwSize);
|
||||
|
|
|
@ -9,6 +9,8 @@
|
|||
#include "tapi.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(tapi)
|
||||
|
||||
static LPPHONE PHONE_Alloc(void)
|
||||
{
|
||||
return 0;
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
#include "ver.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ver)
|
||||
|
||||
|
||||
/*************************************************************************
|
||||
* GetFileResourceSize16 [VER.2]
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
#include "ver.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ver)
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
*
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#include "xmalloc.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ver)
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
*
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
#include "peexe.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ver)
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* read_xx_header [internal]
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
#include "selectors.h"
|
||||
#include "miscemu.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(aspi)
|
||||
|
||||
|
||||
/* FIXME!
|
||||
* 1) Residual byte length reporting not handled
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
#include "heap.h"
|
||||
#include "debug.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(aspi)
|
||||
|
||||
|
||||
/* FIXME!
|
||||
* 1) Residual byte length reporting not handled
|
||||
|
|
|
@ -25,6 +25,9 @@
|
|||
#include "options.h"
|
||||
#include "debug.h"
|
||||
|
||||
DECLARE_DEBUG_CHANNEL(dosfs)
|
||||
DECLARE_DEBUG_CHANNEL(file)
|
||||
|
||||
static DOS_FULL_NAME DIR_Windows;
|
||||
static DOS_FULL_NAME DIR_System;
|
||||
|
||||
|
|
|
@ -33,6 +33,9 @@
|
|||
#include "options.h"
|
||||
#include "debug.h"
|
||||
|
||||
DECLARE_DEBUG_CHANNEL(dosfs)
|
||||
DECLARE_DEBUG_CHANNEL(file)
|
||||
|
||||
/* Define the VFAT ioctl to get both short and long file names */
|
||||
/* FIXME: is it possible to get this to work on other systems? */
|
||||
#ifdef linux
|
||||
|
|
|
@ -44,6 +44,9 @@
|
|||
#include "task.h"
|
||||
#include "debug.h"
|
||||
|
||||
DECLARE_DEBUG_CHANNEL(dosfs)
|
||||
DECLARE_DEBUG_CHANNEL(file)
|
||||
|
||||
typedef struct
|
||||
{
|
||||
char *root; /* root dir in Unix format without trailing / */
|
||||
|
|
|
@ -46,6 +46,8 @@
|
|||
#include "server/request.h"
|
||||
#include "server.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(file)
|
||||
|
||||
#if defined(MAP_ANONYMOUS) && !defined(MAP_ANON)
|
||||
#define MAP_ANON MAP_ANONYMOUS
|
||||
#endif
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
#include "debug.h"
|
||||
#include "options.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(profile)
|
||||
|
||||
typedef struct tagPROFILEKEY
|
||||
{
|
||||
char *name;
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue