[NTDLL][KERNEL32] Implement FLS callbacks.

This commit is contained in:
Mark Jansen 2018-05-10 22:23:16 +02:00
parent f0f8f1c7d9
commit 06eb99edef
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B
3 changed files with 109 additions and 29 deletions

View file

@ -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
//