mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-30 22:17:13 +02:00
Expose the signals for the loading stages.
This commit is contained in:
@ -817,6 +817,30 @@ public:
|
||||
return m_CircularLocks;
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------------------------------------------
|
||||
* Retrieve the preload signal if not complete.
|
||||
*/
|
||||
LightObj & GetPreLoadEvent()
|
||||
{
|
||||
return m_LockPreLoadSignal ? NullLightObj() : mOnPreLoad.second;
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------------------------------------------
|
||||
* Retrieve the postload signal if not complete.
|
||||
*/
|
||||
LightObj & GetPostLoadEvent()
|
||||
{
|
||||
return m_LockPostLoadSignal ? NullLightObj() : mOnPostLoad.second;
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------------------------------------------
|
||||
* Retrieve the unload signal if not complete.
|
||||
*/
|
||||
LightObj & GetUnloadEvent()
|
||||
{
|
||||
return m_LockUnloadSignal ? NullLightObj() : mOnUnload.second;
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------------------------------------------
|
||||
* See if certain circular locks are enabled.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user