diff options
| author | jussi | 2022-03-31 12:58:50 +0300 |
|---|---|---|
| committer | jussi | 2022-03-31 12:58:50 +0300 |
| commit | a3c28c00016fb2a2bd13b36e7269c69b0529c6a4 (patch) | |
| tree | 03b1520eb2d3d0717bd584dd290e9720db2d950c /include | |
| parent | f5b723519f8dd9358db15ac5f366f6646905715f (diff) | |
| download | reilua-enhanced-a3c28c00016fb2a2bd13b36e7269c69b0529c6a4.tar.gz reilua-enhanced-a3c28c00016fb2a2bd13b36e7269c69b0529c6a4.tar.bz2 reilua-enhanced-a3c28c00016fb2a2bd13b36e7269c69b0529c6a4.zip | |
More window related functions.
Diffstat (limited to 'include')
| -rw-r--r-- | include/core.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/core.h b/include/core.h index 0602300..c443542 100644 --- a/include/core.h +++ b/include/core.h @@ -3,9 +3,16 @@ /* Validators. */ bool validCamera3D( size_t id ); /* Window. */ +int lcoreIsWindowReady( lua_State *L ); +int lcoreIsWindowFullscreen( lua_State *L ); +int lcoreIsWindowHidden( lua_State *L ); +int lcoreIsWindowMinimized( lua_State *L ); +int lcoreIsWindowMaximized( lua_State *L ); +int lcoreIsWindowFocused( lua_State *L ); int lcoreSetWindowMonitor( lua_State *L ); int lcoreSetWindowPosition( lua_State *L ); int lcoreSetWindowSize( lua_State *L ); +int lcoreSetWindowMinSize( lua_State *L ); int lcoreGetMonitorPosition( lua_State *L ); int lcoreGetMonitorSize( lua_State *L ); int lcoreGetWindowPosition( lua_State *L ); @@ -17,7 +24,14 @@ int lcoreIsWindowResized( lua_State *L ); int lcoreSetWindowIcon( lua_State *L ); int lcoreSetWindowTitle( lua_State *L ); int lcoreGetMonitorCount( lua_State *L ); +int lcoreGetCurrentMonitor( lua_State *L ); +int lcoreGetMonitorPhysicalSize( lua_State *L ); +int lcoreGetMonitorRefreshRate( lua_State *L ); +int lcoreGetWindowScaleDPI( lua_State *L ); +int lcoreGetMonitorName( lua_State *L ); int lcoreCloseWindow( lua_State *L ); +int lcoreSetClipboardText( lua_State *L ); +int lcoreGetClipboardText( lua_State *L ); /* Timing. */ int lcoreSetTargetFPS( lua_State *L ); int lcoreGetFrameTime( lua_State *L ); |
