home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 October / VPR9710A.ISO / OLS / WIN32 / Comwp371 / comwp371.exe / SAMPLES.EXE / HELLOCPP.CPP < prev    next >
C/C++ Source or Header  |  1997-06-20  |  229b  |  17 lines

  1. #include <afxwin.h>
  2. #include "comwin.h"
  3.  
  4. class CMyApp : public CWinApp
  5. {
  6. public:
  7.     virtual BOOL InitInstance();
  8. };
  9.  
  10. CMyApp myApp;
  11.  
  12. BOOL CMyApp::InitInstance()
  13. {
  14.     ::cwFputsW(L"Hello world\n", NULL);
  15.     return TRUE;
  16. }
  17.