mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 23:25:45 +00:00
[NTDLL][KERNEL32] Implement FLS callbacks.
This commit is contained in:
parent
f0f8f1c7d9
commit
06eb99edef
3 changed files with 109 additions and 29 deletions
|
@ -1210,6 +1210,17 @@ typedef struct _RTL_DEBUG_INFORMATION
|
|||
PVOID Reserved[4];
|
||||
} RTL_DEBUG_INFORMATION, *PRTL_DEBUG_INFORMATION;
|
||||
|
||||
//
|
||||
// Fiber local storage data
|
||||
//
|
||||
#define RTL_FLS_MAXIMUM_AVAILABLE 128
|
||||
typedef struct _RTL_FLS_DATA
|
||||
{
|
||||
LIST_ENTRY ListEntry;
|
||||
PVOID Data[RTL_FLS_MAXIMUM_AVAILABLE];
|
||||
} RTL_FLS_DATA, *PRTL_FLS_DATA;
|
||||
|
||||
|
||||
//
|
||||
// Unload Event Trace Structure for RtlGetUnloadEventTrace
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue