From d0d69f141d71c421f3f6ad8cdb842003a556d626 Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Fri, 9 Nov 2001 11:34:26 +0000 Subject: [PATCH] 2001-11-09 Robert Collins * include/winnt.h (GetCurrentFiber): Create a prototype before the implementation; (GetFiberData): Ditto. --- winsup/w32api/ChangeLog | 5 +++++ winsup/w32api/include/winnt.h | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 6c2615e03..b7a7239cc 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,8 @@ +2001-11-09 Robert Collins + + * include/winnt.h (GetCurrentFiber): Create a prototype before the implementation; + (GetFiberData): Ditto. + 2001-11-09 Robert Collins * include/winnt.h: Backout last change. diff --git a/winsup/w32api/include/winnt.h b/winsup/w32api/include/winnt.h index 65f5d157d..345f4462a 100644 --- a/winsup/w32api/include/winnt.h +++ b/winsup/w32api/include/winnt.h @@ -2524,6 +2524,7 @@ typedef struct _REPARSE_POINT_INFORMATION { WORD ReparseDataLength; WORD UnparsedNameLength; } REPARSE_POINT_INFORMATION, *PREPARSE_POINT_INFORMATION; +PVOID GetCurrentFiber(void); extern __inline__ PVOID GetCurrentFiber(void) { void* ret; @@ -2534,7 +2535,7 @@ extern __inline__ PVOID GetCurrentFiber(void) ); return ret; } - +PVOID GetFiberData(void); extern __inline__ PVOID GetFiberData(void) { void* ret;