home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
TUTORIAL.PAK
/
CPPOCF0.H
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-29
|
975b
|
37 lines
// ---------------------------------------------------------------------------
// Copyright (C) 1994 Borland International
// CppOcf0.h
// ---------------------------------------------------------------------------
#if !defined(CPPOCF0_H)
#define CPPOCF0_H
#include "CppOcf0.rh"
//
// Global defines
//
#define APPSTRING "CppOcf0"
#define MENUNAME "CppOcf0Menu"
#define CLASSNAME "CppOcf0Class"
#define TITLE "CppOcf0 Window"
//
// function prototypes
//
int PASCAL WinMain(HINSTANCE, HINSTANCE, char far*, int);
bool InitApplication(HINSTANCE);
bool InitInstance(HINSTANCE, int);
//
// Main Window functions
//
long CALLBACK _export MainWndProc(HWND, uint, WPARAM, LPARAM);
bool MainWnd_OnCreate(HWND hwnd, CREATESTRUCT FAR* lpCreateStruct);
void MainWnd_OnClose(HWND hwnd);
void MainWnd_OnDestroy(HWND);
void MainWnd_OnPaint(HWND hwnd);
void MainWnd_OnCommand(HWND hwnd, int id, HWND hwndCtl, uint codeNotify);
#endif