Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-03-26 23:24:12 +0400
committerChristopher Faylor <me@cgf.cx>2000-03-26 23:24:12 +0400
commit1bee0008e6acd6b99e4ab02497bb8da4eb869457 (patch)
tree3654098f881eea5b471c30b5bcebf5062b999b6f /winsup/w32api
parent114d3d3070ee92afdab811a2421d9ebc7dc467c5 (diff)
* include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
Diffstat (limited to 'winsup/w32api')
-rw-r--r--winsup/w32api/ChangeLog4
-rw-r--r--winsup/w32api/include/winnt.h8
2 files changed, 8 insertions, 4 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index c0a4cbbb1..1249423d6 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -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>:
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"