Code: Select all
FN_messageboxdpi(title$, message$, flags%, dark%, scale)
FN_messageboxex(title$, message$, flags%, dark%)
FN_messagebox(title$, message$, flags%)
FN_msgboxcb(D%, K%)
I wrote the code like this, got error on line 20:
Code: Select all
10 INSTALL @lib$+"msgbox"
20 FN_messagebox("FIRST BASIC GUI", "HELLO, WORLD!", MB_OK)
30 END
Code: Select all
REM Message Box for 'BBC BASIC for SDL 2.0' (replaces SDL_ShowMessageBox)
REM Needs "dlglib" to be INSTALLed;
This reminds me of Win16 API or Win32 API. So is this library Windows only, or does it work on other platforms like Android?