-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
enhancementSomething can be improvedSomething can be improvedfixedSomething works now, yay!Something works now, yay!
Description
I see that other preserved functions have _CRTIMP2 or similar, but not these.
Should these really be preserved?
Lines 157 to 175 in ed8150e
| // TRANSITION, ABI: preserved for binary compatibility | |
| extern "C" DWORD __cdecl __crtFlsAlloc(_In_opt_ PFLS_CALLBACK_FUNCTION const lpCallback) { | |
| return FlsAlloc(lpCallback); | |
| } | |
| // TRANSITION, ABI: preserved for binary compatibility | |
| extern "C" BOOL __cdecl __crtFlsFree(_In_ DWORD const dwFlsIndex) { | |
| return FlsFree(dwFlsIndex); | |
| } | |
| // TRANSITION, ABI: preserved for binary compatibility | |
| extern "C" PVOID __cdecl __crtFlsGetValue(_In_ DWORD const dwFlsIndex) { | |
| return FlsGetValue(dwFlsIndex); | |
| } | |
| // TRANSITION, ABI: preserved for binary compatibility | |
| extern "C" BOOL __cdecl __crtFlsSetValue(_In_ DWORD const dwFlsIndex, _In_opt_ PVOID const lpFlsData) { | |
| return FlsSetValue(dwFlsIndex, lpFlsData); | |
| } |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementSomething can be improvedSomething can be improvedfixedSomething works now, yay!Something works now, yay!