FixWindowSize(width, height)The program window in resizable by default. Though you can fix it's size and disable resizing by calling function FixWindowSize. It accepts a new width and height of the program window's client area. The new width and height are in pixels:
FixWindowSize(800, 600) nWidth = GetWidth() ' it is 800 nHeight = GetHeight() ' it is 600
This function works well on Windows, but on mobile full screen devices it might have no effect.
See also: