mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
silence some warnings and break it even more
svn path=/trunk/; revision=16333
This commit is contained in:
parent
235fba2f3b
commit
3fd1a79ff3
2 changed files with 7 additions and 0 deletions
|
@ -39,6 +39,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(dbghelp);
|
|||
|
||||
enum st_mode {stm_start, stm_32bit, stm_16bit, stm_done};
|
||||
|
||||
#if 0
|
||||
static const char* wine_dbgstr_addr(const ADDRESS* addr)
|
||||
{
|
||||
if (!addr) return "(null)";
|
||||
|
@ -56,6 +57,7 @@ static const char* wine_dbgstr_addr(const ADDRESS* addr)
|
|||
return "unknown";
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
/* indexes in Reserved array */
|
||||
#define __CurrentMode 0
|
||||
|
|
|
@ -69,6 +69,11 @@ typedef struct _STACK16FRAME
|
|||
|
||||
#include <poppack.h>
|
||||
|
||||
static inline int MapSL(int size)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
#define CURRENT_STACK16 ((STACK16FRAME*)MapSL(NtCurrentTeb()->cur_stack))
|
||||
#define CURRENT_DS (CURRENT_STACK16->ds)
|
||||
|
||||
|
|
Loading…
Reference in a new issue