CriticalSection


Build in functions, to Lock and Unlock a CriticalSection.

Lock(&CriticalSeciton) / TryLock(&CriticalSeciton) / UnLock(&CriticalSeciton)

Parameters

Parameter

Description

&CriticalSection

Pointer to a critical section, see: CriticalSection.

Return Value

None.

Remarks

These functions are build in because they are faster than user defined functions. CriticalSection function can be found here.

Related

AutoHotkey.dll, ahkdll, ahktextdll, ahkReady, addFile, addScript, ahkExec, ahkLabel, ahkFunction, ahkPostFunction, ahkassign, ahkgetvar, ahkTerminate, ahkReload, ahkFindFunc, ahkFindLabel, ahkPause, ahkExecuteLine, Alias, cacheEnable, FindFunc, FindLabel, getTokenValue, getVar, Static, AutoHotkeyMini, DynaCall, CriticalObject, MemoryLoadLibrary, ResourceLoadLibrary, MemoryGetProcAddress, MemoryFreeLibrary, Other Changes

Example

; None.