diff options
| author | jussi | 2024-02-25 14:06:59 +0200 |
|---|---|---|
| committer | jussi | 2024-02-25 14:06:59 +0200 |
| commit | 47ed28b006db71d823cfaa24fa143ab5cfcf279b (patch) | |
| tree | adf35906662b0646a14adfa6a37260c797cd325a /include/text.h | |
| parent | 631cea6aa7510ba53d4f14b5537e1719a72976b9 (diff) | |
| download | reilua-enhanced-47ed28b006db71d823cfaa24fa143ab5cfcf279b.tar.gz reilua-enhanced-47ed28b006db71d823cfaa24fa143ab5cfcf279b.tar.bz2 reilua-enhanced-47ed28b006db71d823cfaa24fa143ab5cfcf279b.zip | |
Added various missing functions.
Diffstat (limited to 'include/text.h')
| -rw-r--r-- | include/text.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/text.h b/include/text.h index b921e9c..d936ec6 100644 --- a/include/text.h +++ b/include/text.h @@ -25,6 +25,7 @@ int ltextDrawTextBoxedTinted( lua_State* L ); /* Text font info functions. */ int ltextSetTextLineSpacing( lua_State* L ); int ltextMeasureText( lua_State* L ); +int ltextMeasureTextEx( lua_State* L ); int ltextGetGlyphIndex( lua_State* L ); int ltextGetGlyphInfo( lua_State* L ); int ltextGetGlyphInfoByIndex( lua_State* L ); @@ -54,6 +55,9 @@ int ltextGetCodepointNext( lua_State* L ); int ltextGetCodepointPrevious( lua_State* L ); int ltextCodepointToUTF8( lua_State* L ); /* Text strings management functions (no UTF-8 strings, only byte chars) */ +int ltextTextSubtext( lua_State* L ); +int ltextTextReplace( lua_State* L ); int ltextTextInsert( lua_State* L ); int ltextTextSplit( lua_State* L ); int ltextTextFindIndex( lua_State* L ); +int ltextTextToPascal( lua_State* L ); |
