mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
removed winedbc dependencies
svn path=/trunk/; revision=6052
This commit is contained in:
parent
a9160ac5fd
commit
a4487cceea
6 changed files with 39 additions and 5 deletions
|
@ -9,7 +9,7 @@ TARGET_BASE = 0x76340000
|
|||
# require os code to explicitly request A/W version of structs/functions
|
||||
TARGET_CFLAGS += -include "windows.h" -DIDC_ARROWA=IDC_ARROW -DWM_ALTTABACTIVE=0x0029 -D_DISABLE_TIDENTS -D__USE_W32API
|
||||
|
||||
TARGET_SDKLIBS = winedbgc.a
|
||||
TARGET_SDKLIBS = ntdll.a
|
||||
|
||||
TARGET_OBJECTS = charlist.o reader.o richedit.o text-writer.o
|
||||
|
||||
|
|
|
@ -28,9 +28,17 @@
|
|||
#include "charlist.h"
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "debug.h"
|
||||
|
||||
#if 0
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(richedit);
|
||||
#else
|
||||
#define TRACE DPRINT
|
||||
#define WARN DPRINT
|
||||
#define FIXME DPRINT
|
||||
#endif
|
||||
|
||||
extern HANDLE RICHED32_hHeap;
|
||||
|
||||
|
|
|
@ -64,9 +64,17 @@
|
|||
#include "charlist.h"
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "debug.h"
|
||||
|
||||
#if 0
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(richedit);
|
||||
#else
|
||||
#define TRACE DPRINT
|
||||
#define WARN DPRINT
|
||||
#define FIXME DPRINT
|
||||
#endif
|
||||
|
||||
extern HANDLE RICHED32_hHeap;
|
||||
|
||||
|
@ -2761,7 +2769,7 @@ FILE *RTFOpenLibFile (char *file, char *mode)
|
|||
|
||||
static void DefaultMsgProc(char *s)
|
||||
{
|
||||
MESSAGE( "%s", s);
|
||||
DPRINT( "%s", s);
|
||||
}
|
||||
|
||||
|
||||
|
@ -2798,7 +2806,7 @@ char buf[rtfBufSiz];
|
|||
|
||||
static void DefaultPanicProc(char *s)
|
||||
{
|
||||
MESSAGE( "%s", s);
|
||||
DPRINT( "%s", s);
|
||||
/*exit (1);*/
|
||||
}
|
||||
|
||||
|
|
|
@ -26,6 +26,8 @@
|
|||
#include "winuser.h"
|
||||
#include "richedit.h"
|
||||
|
||||
#define NOWINEDEBUG 1
|
||||
|
||||
extern VOID RICHED32_Register (VOID);
|
||||
extern VOID RICHED32_Unregister (VOID);
|
||||
|
||||
|
|
|
@ -36,15 +36,23 @@
|
|||
|
||||
#include "rtf.h"
|
||||
#include "rtf2text.h"
|
||||
#include "debug.h"
|
||||
|
||||
#if 0
|
||||
#include "wine/debug.h"
|
||||
|
||||
#define ID_EDIT 1
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(richedit);
|
||||
#else
|
||||
#define TRACE DPRINT
|
||||
#define WARN DPRINT
|
||||
#define FIXME DPRINT
|
||||
#endif
|
||||
|
||||
HANDLE RICHED32_hHeap = NULL;
|
||||
/* LPSTR RICHED32_aSubclass = NULL; */
|
||||
|
||||
#define ID_EDIT 1
|
||||
|
||||
#define TRACE_EDIT_MSG32(str) \
|
||||
TRACE(\
|
||||
"32 bit : " str ": hwnd=%p, wParam=%08x, lParam=%08x\n"\
|
||||
|
|
|
@ -41,9 +41,17 @@
|
|||
#include "rtf.h"
|
||||
#include "rtf2text.h"
|
||||
#include "charlist.h"
|
||||
#include "debug.h"
|
||||
|
||||
#if 0
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(richedit);
|
||||
#else
|
||||
#define TRACE DPRINT
|
||||
#define WARN DPRINT
|
||||
#define FIXME DPRINT
|
||||
#endif
|
||||
|
||||
static void TextClass ();
|
||||
static void ControlClass ();
|
||||
|
|
Loading…
Reference in a new issue