diff options
| author | jussi | 2024-11-21 00:11:31 +0200 |
|---|---|---|
| committer | jussi | 2024-11-21 00:11:31 +0200 |
| commit | 4c0eb17a9c234bfee73af408faa38e38f2e450d9 (patch) | |
| tree | 4aea4fe804a63ed13a1d092aada0ba5925dcf05f /include/core.h | |
| parent | 479726a5e468a2f4d0f9337f082889082e535bfb (diff) | |
| download | reilua-enhanced-4c0eb17a9c234bfee73af408faa38e38f2e450d9.tar.gz reilua-enhanced-4c0eb17a9c234bfee73af408faa38e38f2e450d9.tar.bz2 reilua-enhanced-4c0eb17a9c234bfee73af408faa38e38f2e450d9.zip | |
New raylib 5.5 functions.
Diffstat (limited to 'include/core.h')
| -rw-r--r-- | include/core.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/core.h b/include/core.h index 54bd4c6..4dd6dda 100644 --- a/include/core.h +++ b/include/core.h @@ -44,6 +44,7 @@ int lcoreGetWindowScaleDPI( lua_State* L ); int lcoreGetMonitorName( lua_State* L ); int lcoreSetClipboardText( lua_State* L ); int lcoreGetClipboardText( lua_State* L ); +int lcoreGetClipboardImage( lua_State* L ); int lcoreEnableEventWaiting( lua_State* L ); int lcoreDisableEventWaiting( lua_State* L ); /* Cursor-related functions. */ @@ -135,10 +136,12 @@ int lcoreGetDirectoryPath( lua_State* L ); int lcoreGetPrevDirectoryPath( lua_State* L ); int lcoreGetWorkingDirectory( lua_State* L ); int lcoreGetApplicationDirectory( lua_State* L ); -int lcoreLoadDirectoryFiles( lua_State* L ); -int lcoreLoadDirectoryFilesEx( lua_State* L ); +int lcoreMakeDirectory( lua_State* L ); int lcoreChangeDirectory( lua_State* L ); int lcoreIsPathFile( lua_State* L ); +int lcoreIsFileNameValid( lua_State* L ); +int lcoreLoadDirectoryFiles( lua_State* L ); +int lcoreLoadDirectoryFilesEx( lua_State* L ); int lcoreIsFileDropped( lua_State* L ); int lcoreLoadDroppedFiles( lua_State* L ); int lcoreGetFileModTime( lua_State* L ); @@ -147,6 +150,9 @@ int lcoreCompressData( lua_State* L ); int lcoreDecompressData( lua_State* L ); int lcoreEncodeDataBase64( lua_State* L ); int lcoreDecodeDataBase64( lua_State* L ); +int lcoreComputeCRC32( lua_State* L ); +int lcoreComputeMD5( lua_State* L ); +int lcoreComputeSHA1( lua_State* L ); /* Automation events functionality. */ int lcoreLoadAutomationEventList( lua_State* L ); int lcoreUnloadAutomationEventList( lua_State* L ); @@ -184,6 +190,7 @@ int lcoreGetGamepadButtonPressed( lua_State* L ); int lcoreGetGamepadAxisCount( lua_State* L ); int lcoreGetGamepadAxisMovement( lua_State* L ); int lcoreSetGamepadMappings( lua_State* L ); +int lcoreSetGamepadVibration( lua_State* L ); /* Input-related functions: mouse. */ int lcoreIsMouseButtonPressed( lua_State* L ); int lcoreIsMouseButtonDown( lua_State* L ); |
