home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 December
/
VPR9712A.ISO
/
OLS
/
WIN32
/
COMWP380
/
comwp380.exe
/
SAMPLES.EXE
/
HELLOCPP.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1997-08-25
|
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;
}