home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Online Software 2: 1,000 Utilities
/
TK_OJ9711.iso
/
launch
/
COMWP380.EXE
/
SAMPLES.EXE
/
HELLOCPP.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-08-25
|
229 b
|
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;
}