mirror of
https://github.com/decompals/wibo.git
synced 2025-12-13 15:16:27 +00:00
Split kernel32 into separate files (part 2)
This commit is contained in:
16
dll/kernel32/fibersapi.h
Normal file
16
dll/kernel32/fibersapi.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
#include "common.h"
|
||||
|
||||
using PFLS_CALLBACK_FUNCTION = void (*)(void *);
|
||||
constexpr DWORD FLS_OUT_OF_INDEXES = 0xFFFFFFFF;
|
||||
|
||||
namespace kernel32 {
|
||||
|
||||
DWORD WIN_FUNC FlsAlloc(PFLS_CALLBACK_FUNCTION lpCallback);
|
||||
BOOL WIN_FUNC FlsFree(DWORD dwFlsIndex);
|
||||
PVOID WIN_FUNC FlsGetValue(DWORD dwFlsIndex);
|
||||
BOOL WIN_FUNC FlsSetValue(DWORD dwFlsIndex, PVOID lpFlsData);
|
||||
|
||||
} // namespace kernel32
|
||||
|
||||
Reference in New Issue
Block a user