]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
authorChristopher Faylor <me@cgf.cx>
Sun, 26 Mar 2000 19:24:12 +0000 (19:24 +0000)
committerChristopher Faylor <me@cgf.cx>
Sun, 26 Mar 2000 19:24:12 +0000 (19:24 +0000)
winsup/w32api/ChangeLog
winsup/w32api/include/winnt.h

index c0a4cbbb154101327e9f8466d77f66474e4ee182..1249423d6b8598d3b73b04458cf57d2ecd058f21 100644 (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>
 
        Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
index 7f08e281049071ac7401029ddc20613ee7f06ab3..03d8c929ab3536c03ea9ece8e2184e631d7d2204 100644 (file)
@@ -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"
This page took 0.035093 seconds and 5 git commands to generate.