mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 17:16:58 +00:00
Make UNIMPLEMENTED available everywhere and remove some #ifdef cruft.
svn path=/trunk/; revision=23983
This commit is contained in:
parent
94a97e085a
commit
25c11e5f6e
1 changed files with 2 additions and 4 deletions
|
@ -73,9 +73,7 @@ void INSTRUCTION_BREAKPOINT4(unsigned long addr);
|
|||
void MEMORY_READWRITE_BREAKPOINT4(unsigned long addr);
|
||||
void MEMORY_WRITE_BREAKPOINT4(unsigned long addr);
|
||||
|
||||
#elif defined(__PowerPC__)
|
||||
#define UNIMPLEMENTED() BugCheck((DPRINT_WARNING, "This function is unimplemented!\n"))
|
||||
#endif // defined __i386__
|
||||
#endif
|
||||
|
||||
#else
|
||||
|
||||
|
@ -85,8 +83,8 @@ void MEMORY_WRITE_BREAKPOINT4(unsigned long addr);
|
|||
#define BugCheck(_x_)
|
||||
#define DbgDumpBuffer(_x_, _y_, _z_)
|
||||
|
||||
#define UNIMPLEMENTED() BugCheck((DPRINT_WARNING, "This function is unimplemented!\n"))
|
||||
#endif // defined DEBUG
|
||||
|
||||
#define UNIMPLEMENTED() BugCheck((DPRINT_WARNING, "This function is unimplemented!\n"))
|
||||
|
||||
#endif // defined __DEBUG_H
|
||||
|
|
Loading…
Reference in a new issue