Updated winedbg.dll to support latest WINE dlls.

Patch by Filip Navara

svn path=/trunk/; revision=5775
This commit is contained in:
Steven Edwards 2003-08-22 23:32:39 +00:00
parent 7f4e557bf9
commit 1e60813c3c
3 changed files with 11 additions and 1 deletions

View file

@ -29,12 +29,20 @@
long interlocked_xchg_add(long *dest, long incr);
#define strlenW wcslen
#define strcpyW wcscpy
#define strcatW wcscat
#define strstrW wcsstr
#define strtolW wcstol
#define strchrW wcschr
#define strncmpW wcsncmp
#define tolowerW towlower
#define atoiW _wtoi
#define atolW _wtol
#define strncasecmp strncmp
#define snprintf _snprintf
#define strcasecmp _stricmp
#define SLOWORD(l) ((SHORT)(LONG)(l))
#define SHIWORD(l) ((SHORT)((LONG)(l) >> 16))
#endif /* __PORTING_WINE2ROS_H */

View file

@ -3,6 +3,7 @@
//
#include <stdio.h>
#include <stdarg.h>
#include <tchar.h>
#define WIN32_LEAN_AND_MEAN
#include "windows.h"
#include "trace.h"

View file

@ -4,6 +4,7 @@
#include <windows.h>
#include <stdlib.h>
#include <stdio.h>
#include <tchar.h>
#include "porting.h"
#include "trace.h"