I think adding c's typedef would make programming easier and the
code more readable.
------------------
code more readable.
Code:
#COMPILE EXE #INCLUDE "win32api.inc" '' c ' typedef unsigned LONG ULONG; '' pb typedef hWnd AS LONG typedef hdc AS LONG FUNCTION PBMAIN LOCAL hDlg AS hWnd DIALOG NEW 0, "hi",,, 250, 284,, TO hDlg DIALOG SHOW MODAL hDlg END FUNCTION
Comment