diff options
author | Christopher Faylor <me@cgf.cx> | 2000-03-26 19:24:12 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-03-26 19:24:12 +0000 |
commit | 1bee0008e6acd6b99e4ab02497bb8da4eb869457 (patch) | |
tree | 3654098f881eea5b471c30b5bcebf5062b999b6f /winsup/w32api/include | |
parent | 114d3d3070ee92afdab811a2421d9ebc7dc467c5 (diff) | |
download | cygnal-1bee0008e6acd6b99e4ab02497bb8da4eb869457.tar.gz cygnal-1bee0008e6acd6b99e4ab02497bb8da4eb869457.tar.bz2 cygnal-1bee0008e6acd6b99e4ab02497bb8da4eb869457.zip |
* include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
Diffstat (limited to 'winsup/w32api/include')
-rw-r--r-- | winsup/w32api/include/winnt.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/w32api/include/winnt.h b/winsup/w32api/include/winnt.h index 7f08e2810..03d8c929a 100644 --- a/winsup/w32api/include/winnt.h +++ b/winsup/w32api/include/winnt.h @@ -1150,7 +1150,7 @@ typedef struct _CONTEXT { DWORD Psr; DWORD ContextFlags; DWORD Fill[4]; -} CONTEXT, *PCONTEXT; +} CONTEXT; #elif defined(SHx) /* These are the debug or break registers on the SH3 */ @@ -1261,7 +1261,7 @@ typedef struct _CONTEXT { ULONG xFRegs[16]; #endif #endif -} CONTEXT,*PCONTEXT,*LPCONTEXT; +} CONTEXT; #elif defined(MIPS) @@ -1410,7 +1410,7 @@ typedef struct _CONTEXT { DWORD Fill[2]; -} CONTEXT,*PCONTEXT,*LPCONTEXT; +} CONTEXT; #elif defined(ARM) // // The following flags control the contents of the CONTEXT structure. @@ -1461,7 +1461,7 @@ typedef struct _CONTEXT { ULONG Lr; ULONG Pc; ULONG Psr; -} CONTEXT, *PCONTEXT; +} CONTEXT; #else #error "undefined processor type" |