home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
SRCPOOL.PAK
/
SRCPOOL.CPP
next >
Wrap
C/C++ Source or Header
|
1995-08-29
|
371b
|
18 lines
// Borland C++ - (C) Copyright 1991, 1992 by Borland International
//
// IDE SourcePool Example
#include <windows.h>
#ifdef __FLAT__
static char szName[] = "SrcPool32";
#else
static char szName[] = "SrcPool16";
#endif
int WINAPI WinMain( HINSTANCE, HINSTANCE, LPSTR, int )
{
return( ::MessageBox( 0, "IDE SourcePool example", szName, MB_OK ) );
}