* include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.

This commit is contained in:
Christopher Faylor 2000-03-26 19:24:12 +00:00
parent 114d3d3070
commit 1bee0008e6
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
Sun Mar 26 13:41:47 2000 Christopher Faylor <cgf@cygnus.com>
* include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
2000-02-28 Mumit Khan <khan@xraylith.wisc.edu> 2000-02-28 Mumit Khan <khan@xraylith.wisc.edu>
Patches from Jan Nijtmans <j.nijtmans@chello.nl>: Patches from Jan Nijtmans <j.nijtmans@chello.nl>:

View File

@ -1150,7 +1150,7 @@ typedef struct _CONTEXT {
DWORD Psr; DWORD Psr;
DWORD ContextFlags; DWORD ContextFlags;
DWORD Fill[4]; DWORD Fill[4];
} CONTEXT, *PCONTEXT; } CONTEXT;
#elif defined(SHx) #elif defined(SHx)
/* These are the debug or break registers on the SH3 */ /* These are the debug or break registers on the SH3 */
@ -1261,7 +1261,7 @@ typedef struct _CONTEXT {
ULONG xFRegs[16]; ULONG xFRegs[16];
#endif #endif
#endif #endif
} CONTEXT,*PCONTEXT,*LPCONTEXT; } CONTEXT;
#elif defined(MIPS) #elif defined(MIPS)
@ -1410,7 +1410,7 @@ typedef struct _CONTEXT {
DWORD Fill[2]; DWORD Fill[2];
} CONTEXT,*PCONTEXT,*LPCONTEXT; } CONTEXT;
#elif defined(ARM) #elif defined(ARM)
// //
// The following flags control the contents of the CONTEXT structure. // The following flags control the contents of the CONTEXT structure.
@ -1461,7 +1461,7 @@ typedef struct _CONTEXT {
ULONG Lr; ULONG Lr;
ULONG Pc; ULONG Pc;
ULONG Psr; ULONG Psr;
} CONTEXT, *PCONTEXT; } CONTEXT;
#else #else
#error "undefined processor type" #error "undefined processor type"