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 >
Wrap
C/C++ Source or Header
|
1997-06-20
|
229b
|
17 lines
#include <afxwin.h>
#include "comwin.h"
class CMyApp : public CWinApp
{
public:
virtual BOOL InitInstance();
};
CMyApp myApp;
BOOL CMyApp::InitInstance()
{
::cwFputsW(L"Hello world\n", NULL);
return TRUE;
}