home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / uidemo / dialog2 / main.cxx < prev    next >
C/C++ Source or Header  |  1995-04-08  |  416b  |  26 lines

  1.  
  2. // A sample program that puts up a non-resource-based dialog
  3. //
  4. // M. A. Sridhar
  5. // March 27, 1994
  6.  
  7. #include "ui/applic.h"
  8.  
  9. #include "appwin.h"
  10.  
  11. // ======================== Main program ===========================
  12.  
  13. #if defined(__BORLANDC__)
  14. extern unsigned _stklen = 24000;
  15. #endif
  16.  
  17.  
  18. int UI_Application::Main (int, char* [])
  19. {
  20.     MakeTopWindow (new AppWindow);
  21.     Run();
  22.     return 0;
  23. }
  24.  
  25.  
  26.