New debug scheme with explicit debug channels declaration.

oldstable
Patrik Stridvall 1999-04-19 14:56:29 +00:00 committed by Alexandre Julliard
parent 3c9cf42d00
commit b4b9fae671
370 changed files with 1139 additions and 314 deletions

View File

@ -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);

View File

@ -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>

View File

@ -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);

View File

@ -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

View File

@ -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') */

View File

@ -17,6 +17,9 @@
#include "debug.h"
#include "tweak.h"
DECLARE_DEBUG_CHANNEL(combo)
DECLARE_DEBUG_CHANNEL(listbox)
/* Unimplemented yet:
* - LBS_NOSEL
* - LBS_USETABSTOPS

View File

@ -32,6 +32,8 @@
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(menu)
/* internal popup menu window messages */

View File

@ -12,6 +12,8 @@
#include "win.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(scroll)
static HBITMAP hUpArrow = 0;
static HBITMAP hDnArrow = 0;

View File

@ -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 );

View File

@ -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 };

View File

@ -6,6 +6,8 @@
#include "wincrypt.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(advapi)
/******************************************************************************
* CryptAcquireContextA
* Acquire a crypto provider context handle.

View File

@ -11,6 +11,8 @@
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(advapi)
/******************************************************************************
* BackupEventLog32A [ADVAPI32.15]
*/

View File

@ -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); \

View File

@ -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);

View File

@ -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;

View File

@ -19,6 +19,8 @@
#include "animate.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(animate)
#define ANIMATE_GetInfoPtr(hwnd) ((ANIMATE_INFO *)GetWindowLongA (hwnd, 0))

View File

@ -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))

View File

@ -22,6 +22,8 @@
#include "heap.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(commctrl)
extern HANDLE COMCTL32_hHeap; /* handle to the private heap */

View File

@ -33,6 +33,8 @@
#include "debug.h"
#include "winerror.h"
DEFAULT_DEBUG_CHANNEL(commctrl)
HANDLE COMCTL32_hHeap = (HANDLE)NULL;
DWORD COMCTL32_dwProcessesAttached = 0;

View File

@ -19,6 +19,8 @@
#include "datetime.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(datetime)
#define DATETIME_GetInfoPtr(hwnd) ((DATETIME_INFO *)GetWindowLongA (hwnd, 0))

View File

@ -15,6 +15,8 @@
#include "commctrl.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(commctrl)
BOOL WINAPI MakeDragList (HWND hwndLB)
{

View File

@ -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))

View File

@ -26,6 +26,8 @@
#include "header.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(header)
#define __HDM_LAYOUT_HACK__

View File

@ -18,6 +18,8 @@
#include "hotkey.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(hotkey)
#define HOTKEY_GetInfoPtr(hwnd) ((HOTKEY_INFO *)GetWindowLongA (hwnd, 0))

View File

@ -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))

View File

@ -29,6 +29,8 @@
#include "heap.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(ipaddress)
#define IPADDRESS_GetInfoPtr(hwnd) ((IPADDRESS_INFO *)GetWindowLongA (hwnd, 0))

View File

@ -53,6 +53,8 @@
#include "listview.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(listview)
/*
* constants
*/

View File

@ -19,6 +19,8 @@
#include "monthcal.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(monthcal)
#define MONTHCAL_GetInfoPtr(hwnd) ((MONTHCAL_INFO *)GetWindowLongA (hwnd, 0))

View File

@ -18,6 +18,8 @@
#include "nativefont.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(nativefont)
#define NATIVEFONT_GetInfoPtr(hwnd) ((NATIVEFONT_INFO *)GetWindowLongA (hwnd, 0))

View File

@ -18,6 +18,8 @@
#include "pager.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(pager)
#define PAGER_GetInfoPtr(hwnd) ((PAGER_INFO *)GetWindowLongA(hwnd, 0))

View File

@ -11,6 +11,8 @@
#include "progress.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(progress)
/* Control configuration constants */

View File

@ -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);

View File

@ -26,6 +26,8 @@
#include "sysmetrics.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(rebar)
/* fDraw flags */
#define DRAW_GRIPPER 1

View File

@ -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,

View File

@ -18,6 +18,8 @@
#include "tab.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(tab)
/******************************************************************************
* Positioning constants
*/

View File

@ -35,6 +35,8 @@
#include "toolbar.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(toolbar)
/* #define __NEW_WRAP_CODE__ */
#define SEPARATOR_WIDTH 8

View File

@ -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 */

View File

@ -29,6 +29,8 @@
#include "trackbar.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(trackbar)
#define TRACKBAR_GetInfoPtr(wndPtr) ((TRACKBAR_INFO *)GetWindowLongA (hwnd,0))

View File

@ -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

View File

@ -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 */

View File

@ -22,6 +22,8 @@
#include "winproc.h"
#include "cderr.h"
DEFAULT_DEBUG_CHANNEL(commdlg)
/***********************************************************************
* ChooseColor (COMMDLG.5)
*/

View File

@ -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;

View File

@ -21,6 +21,8 @@
#include "debug.h"
#include "winproc.h"
DEFAULT_DEBUG_CHANNEL(commdlg)
/***********************************************************************
* FindText16 (COMMDLG.11)

View File

@ -24,6 +24,8 @@
#include "winproc.h"
#include "cderr.h"
DEFAULT_DEBUG_CHANNEL(commdlg)
static HBITMAP16 hBitmapTT = 0;

View File

@ -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;

View File

@ -23,6 +23,8 @@
#include "winproc.h"
#include "cderr.h"
DEFAULT_DEBUG_CHANNEL(commdlg)
/***********************************************************************
* PrintDlg16 (COMMDLG.20)
*/

View File

@ -12,6 +12,8 @@
#include "debug.h"
#include "imagehlp.h"
DEFAULT_DEBUG_CHANNEL(imagehlp)
/***********************************************************************
* Data
*/

View File

@ -10,6 +10,8 @@
#include "debug.h"
#include "imagehlp.h"
DEFAULT_DEBUG_CHANNEL(imagehlp)
/***********************************************************************
* FindDebugInfoFile32 (IMAGEHLP.5)
*/

View File

@ -10,6 +10,8 @@
#include "windef.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(imagehlp)
/**********************************************************************/
HANDLE IMAGEHLP_hHeap = (HANDLE) NULL;

View File

@ -10,6 +10,8 @@
#include "imagehlp.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(imagehlp)
/***********************************************************************
* ImageAddCertificate32 (IMAGEHLP.10)
*/

View File

@ -10,6 +10,8 @@
#include "debug.h"
#include "imagehlp.h"
DEFAULT_DEBUG_CHANNEL(imagehlp)
/***********************************************************************
* BindImage32 (IMAGEHLP.1)
*/

View File

@ -10,6 +10,8 @@
#include "debug.h"
#include "imagehlp.h"
DEFAULT_DEBUG_CHANNEL(imagehlp)
/***********************************************************************
* SymCleanup32 (IMAGEHLP.37)
*/

View File

@ -9,6 +9,8 @@
#include "msacm.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(msacm)
/***********************************************************************
* ACMGETVERSION (MSACM.7)
*/

View File

@ -16,6 +16,8 @@
#include "msacmdrv.h"
#include "winreg.h"
DEFAULT_DEBUG_CHANNEL(msacm)
/***********************************************************************
* acmDriverAddA (MSACM32.2)
*/

View File

@ -11,6 +11,8 @@
#include "msacmdrv.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(msacm)
/***********************************************************************
* acmFilterChooseA (MSACM32.13)
*/

View File

@ -12,6 +12,8 @@
#include "msacm.h"
#include "msacmdrv.h"
DEFAULT_DEBUG_CHANNEL(msacm)
/***********************************************************************
* acmFormatChooseA (MSACM32.23)
*/

View File

@ -12,6 +12,8 @@
#include "msacmdrv.h"
#include "winversion.h"
DEFAULT_DEBUG_CHANNEL(msacm)
/**********************************************************************/
static DWORD MSACM_dwProcessesAttached = 0;

View File

@ -12,6 +12,8 @@
#include "msacm.h"
#include "msacmdrv.h"
DEFAULT_DEBUG_CHANNEL(msacm)
/***********************************************************************
* acmStreamClose (MSACM32.37)
*/

View File

@ -4,6 +4,8 @@
#include "ntddk.h"
DEFAULT_DEBUG_CHANNEL(ntdll)
/**************************************************************************
* NtOpenFile [NTDLL.127]
* FUNCTION: Opens a file

View 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);

View File

@ -8,6 +8,8 @@
#include "ntddk.h"
DEFAULT_DEBUG_CHANNEL(ntdll)
/* move to somewhere */
typedef void * POBJDIR_INFORMATION;

View File

@ -7,6 +7,8 @@
#include "ntddk.h"
DEFAULT_DEBUG_CHANNEL(ntdll)
/******************************************************************************
* NtCreateKey [NTDLL]

View File

@ -18,6 +18,8 @@
#include "ntddk.h"
#include "winreg.h"
DEFAULT_DEBUG_CHANNEL(ntdll)
/*
* resource functions

View File

@ -18,6 +18,8 @@
#include "debug.h"
#include "ntddk.h"
DEFAULT_DEBUG_CHANNEL(ntdll)
/*
* STRING FUNCTIONS
*/

View File

@ -25,6 +25,8 @@
#include "ntddk.h"
#include "winreg.h"
DEFAULT_DEBUG_CHANNEL(ntdll)
/*
* SID FUNCTIONS
*/

View File

@ -10,6 +10,8 @@
#include "ntddk.h"
DEFAULT_DEBUG_CHANNEL(ntdll)
/*
* Semaphore
*/

View File

@ -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

View File

@ -10,6 +10,8 @@
#include "debug.h"
#include "psapi.h"
DEFAULT_DEBUG_CHANNEL(psapi)
#include <string.h>
/***********************************************************************

View File

@ -8,6 +8,8 @@
#include "ras.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(ras)
/**************************************************************************
* RasEnumConnections32A [RASAPI32.544]
*/

View File

@ -23,6 +23,8 @@
#include "pidl.h"
#include "shell32_main.h"
DEFAULT_DEBUG_CHANNEL(shell)
#define IDD_TREEVIEW 99
static HWND hwndTreeView;

View File

@ -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;

View File

@ -16,6 +16,8 @@
#include "shell32_main.h"
DEFAULT_DEBUG_CHANNEL(shell)
/**************************************************************************
* IContextMenu Implementation
*/

View File

@ -13,6 +13,8 @@
#include "shell32_main.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(shell)
UINT cfShellIDList=0;
UINT cfFileGroupDesc=0;
UINT cfFileContents=0;

View File

@ -15,6 +15,8 @@
#include "shlguid.h"
#include "shell32_main.h"
DEFAULT_DEBUG_CHANNEL(shell)
typedef struct tagENUMLIST
{
struct tagENUMLIST *pNext;

View File

@ -16,6 +16,8 @@
#include "pidl.h"
#include "shell32_main.h"
DEFAULT_DEBUG_CHANNEL(shell)
/***********************************************************************
* IExtractIconA implementation

View File

@ -17,6 +17,8 @@
#include "pidl.h"
#include "shell32_main.h"
DEFAULT_DEBUG_CHANNEL(shell)
#pragma pack(1)
typedef struct

View File

@ -24,6 +24,9 @@
#include "pidl.h"
DECLARE_DEBUG_CHANNEL(pidl)
DECLARE_DEBUG_CHANNEL(shell)
void pdump (LPCITEMIDLIST pidl)
{ DWORD type;
CHAR * szData;

View File

@ -14,6 +14,8 @@
#include "pidl.h"
#include "shell32_main.h"
DEFAULT_DEBUG_CHANNEL(shell)
typedef struct
{ ICOM_VTABLE(IStream)* lpvtbl;
DWORD ref;

View File

@ -27,6 +27,9 @@
#include "shlguid.h"
DECLARE_DEBUG_CHANNEL(exec)
DECLARE_DEBUG_CHANNEL(shell)
/*************************************************************************
* CommandLineToArgvW [SHELL32.7]
*/

View File

@ -19,6 +19,8 @@
#include "shell32_main.h"
#include "shlguid.h"
DEFAULT_DEBUG_CHANNEL(shell)
/* link file formats */
#pragma (1);

View File

@ -25,6 +25,8 @@
#include "shell32_main.h"
DEFAULT_DEBUG_CHANNEL(shell)
/*************************************************************************
*
*/

View File

@ -16,6 +16,8 @@
#include "shlobj.h"
#include "shell32_main.h"
DEFAULT_DEBUG_CHANNEL(shell)
/*************************************************************************
* SHChangeNotifyRegister [SHELL32.2]
*

View File

@ -13,6 +13,8 @@
#include "shlobj.h"
#include "shell32_main.h"
DEFAULT_DEBUG_CHANNEL(shell)
/*************************************************************************
* PathIsRoot [SHELL32.29]
*/

View File

@ -21,6 +21,8 @@
#include "wine/obj_shellfolder.h"
#include "shell32_main.h"
DEFAULT_DEBUG_CHANNEL(shell)
/***************************************************************************
* IDropTarget interface definition for the ShellFolder
*/

View File

@ -14,6 +14,8 @@
#include "pidl.h"
DEFAULT_DEBUG_CHANNEL(shell)
BOOL WINAPI FileMenu_DeleteAllItems (HMENU hMenu);
/*************************************************************************

View File

@ -29,6 +29,8 @@
#include "pidl.h"
#include "shell32_main.h"
DEFAULT_DEBUG_CHANNEL(shell)
typedef struct
{ ICOM_VTABLE(IShellView)* lpvtbl;
DWORD ref;

View File

@ -9,6 +9,8 @@
#include "tapi.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(tapi)
DWORD WINAPI tapiGetLocationInfo(LPSTR lpszCountryCode, LPSTR lpszCityCode)
{
char temp[30];

View File

@ -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);

View File

@ -9,6 +9,8 @@
#include "tapi.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(tapi)
static LPPHONE PHONE_Alloc(void)
{
return 0;

View File

@ -10,6 +10,8 @@
#include "ver.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(ver)
/*************************************************************************
* GetFileResourceSize16 [VER.2]

View File

@ -17,6 +17,8 @@
#include "ver.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(ver)
/******************************************************************************
*

View File

@ -18,6 +18,8 @@
#include "xmalloc.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(ver)
/******************************************************************************
*

View File

@ -19,6 +19,8 @@
#include "peexe.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(ver)
/***********************************************************************
* read_xx_header [internal]

View File

@ -17,6 +17,8 @@
#include "selectors.h"
#include "miscemu.h"
DEFAULT_DEBUG_CHANNEL(aspi)
/* FIXME!
* 1) Residual byte length reporting not handled

View File

@ -15,6 +15,8 @@
#include "heap.h"
#include "debug.h"
DEFAULT_DEBUG_CHANNEL(aspi)
/* FIXME!
* 1) Residual byte length reporting not handled

View File

@ -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;

View File

@ -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

View File

@ -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 / */

View File

@ -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

View File

@ -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