mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
[NTVDM]: Register functions are already declared via the inclusion of ddk/vddsvc.h. However still keep their definitions also in registers.h (yet #if 0'ed out) for reference.
svn path=/branches/ntvdm/; revision=61795
This commit is contained in:
parent
ba97a8f567
commit
3c273ca1a9
4 changed files with 4 additions and 2 deletions
|
@ -25,6 +25,7 @@
|
|||
#include <winuser.h>
|
||||
|
||||
#include <vddsvc.h>
|
||||
// #include "registers.h"
|
||||
|
||||
#include <debug.h>
|
||||
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
#define NDEBUG
|
||||
|
||||
#include "emulator.h"
|
||||
#include "registers.h"
|
||||
|
||||
/* PUBLIC FUNCTIONS ***********************************************************/
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
|
||||
VOID EmulatorSetStack(WORD Segment, DWORD Offset);
|
||||
|
||||
#if 0 // Those function prototypes are already included via ddk/vddsvc.h
|
||||
|
||||
PVOID WINAPI getIntelRegistersPointer(VOID);
|
||||
|
||||
|
@ -115,6 +116,8 @@ VOID WINAPI setEFLAGS(ULONG);
|
|||
USHORT WINAPI getMSW(VOID);
|
||||
VOID WINAPI setMSW(USHORT);
|
||||
|
||||
#endif
|
||||
|
||||
#endif // _REGISTERS_H_
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
#include "vddsup.h"
|
||||
|
||||
#include "bop.h"
|
||||
#include "registers.h"
|
||||
|
||||
#include <isvbop.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue