2001-11-09 Robert Collins <rbtcollins@hotmail.com>
* include/winnt.h (GetCurrentFiber): Create a prototype before the implementation; (GetFiberData): Ditto.
This commit is contained in:
parent
29c63d063f
commit
d0d69f141d
|
@ -1,3 +1,8 @@
|
||||||
|
2001-11-09 Robert Collins <rbtcollins@hotmail.com>
|
||||||
|
|
||||||
|
* include/winnt.h (GetCurrentFiber): Create a prototype before the implementation;
|
||||||
|
(GetFiberData): Ditto.
|
||||||
|
|
||||||
2001-11-09 Robert Collins <rbtcollins@hotmail.com>
|
2001-11-09 Robert Collins <rbtcollins@hotmail.com>
|
||||||
|
|
||||||
* include/winnt.h: Backout last change.
|
* include/winnt.h: Backout last change.
|
||||||
|
|
|
@ -2524,6 +2524,7 @@ typedef struct _REPARSE_POINT_INFORMATION {
|
||||||
WORD ReparseDataLength;
|
WORD ReparseDataLength;
|
||||||
WORD UnparsedNameLength;
|
WORD UnparsedNameLength;
|
||||||
} REPARSE_POINT_INFORMATION, *PREPARSE_POINT_INFORMATION;
|
} REPARSE_POINT_INFORMATION, *PREPARSE_POINT_INFORMATION;
|
||||||
|
PVOID GetCurrentFiber(void);
|
||||||
extern __inline__ PVOID GetCurrentFiber(void)
|
extern __inline__ PVOID GetCurrentFiber(void)
|
||||||
{
|
{
|
||||||
void* ret;
|
void* ret;
|
||||||
|
@ -2534,7 +2535,7 @@ extern __inline__ PVOID GetCurrentFiber(void)
|
||||||
);
|
);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
PVOID GetFiberData(void);
|
||||||
extern __inline__ PVOID GetFiberData(void)
|
extern __inline__ PVOID GetFiberData(void)
|
||||||
{
|
{
|
||||||
void* ret;
|
void* ret;
|
||||||
|
|
Loading…
Reference in New Issue