diff options
| author | jussi | 2024-03-01 23:11:54 +0200 |
|---|---|---|
| committer | jussi | 2024-03-01 23:11:54 +0200 |
| commit | ca238975dc63d2dddcd2b17ad627bedc95dd158c (patch) | |
| tree | d1cf76dbc3ec24163d952e12204bb7f854a95501 /include/core.h | |
| parent | 625e4e0e4df7d08b58d6ba5741b932e57a70f3dd (diff) | |
| download | reilua-enhanced-ca238975dc63d2dddcd2b17ad627bedc95dd158c.tar.gz reilua-enhanced-ca238975dc63d2dddcd2b17ad627bedc95dd158c.tar.bz2 reilua-enhanced-ca238975dc63d2dddcd2b17ad627bedc95dd158c.zip | |
Automation events.
Diffstat (limited to 'include/core.h')
| -rw-r--r-- | include/core.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/core.h b/include/core.h index 939dfaf..11a8d2a 100644 --- a/include/core.h +++ b/include/core.h @@ -145,6 +145,21 @@ int lcoreCompressData( lua_State* L ); int lcoreDecompressData( lua_State* L ); int lcoreEncodeDataBase64( lua_State* L ); int lcoreDecodeDataBase64( lua_State* L ); +/* Automation events functionality. */ +int lcoreLoadAutomationEventList( lua_State* L ); +int lcoreUnloadAutomationEventList( lua_State* L ); +int lcoreExportAutomationEventList( lua_State* L ); +int lcoreSetAutomationEventList( lua_State* L ); +int lcoreSetAutomationEventBaseFrame( lua_State* L ); +int lcoreStartAutomationEventRecording( lua_State* L ); +int lcoreStopAutomationEventRecording( lua_State* L ); +int lcorePlayAutomationEvent( lua_State* L ); +int lcoreGetAutomationEventListCapacity( lua_State* L ); +int lcoreGetAutomationEventListCount( lua_State* L ); +int lcoreGetAutomationEvent( lua_State* L ); +int lcoreGetAutomationEventFrame( lua_State* L ); +int lcoreGetAutomationEventType( lua_State* L ); +int lcoreGetAutomationEventParams( lua_State* L ); /* Input-related functions: keyboard. */ int lcoreIsKeyPressed( lua_State* L ); int lcoreIsKeyPressedRepeat( lua_State* L ); |
