|
Last change
on this file since 743 was 743, checked in by sandervl, 26 years ago |
|
Class changes + added MDICLIENT class
|
|
File size:
1.1 KB
|
| Line | |
|---|
| 1 | /* $Id: win32wmdiclient.h,v 1.1 1999-08-30 14:21:50 sandervl Exp $ */
|
|---|
| 2 | /*
|
|---|
| 3 | * Win32 MDI Client Window Class for OS/2
|
|---|
| 4 | *
|
|---|
| 5 | * Copyright 1999 Sander van Leeuwen (sandervl@xs4all.nl)
|
|---|
| 6 | *
|
|---|
| 7 | * Project Odin Software License can be found in LICENSE.TXT
|
|---|
| 8 | *
|
|---|
| 9 | */
|
|---|
| 10 | #ifndef __WIN32WMDICLIENT_H__
|
|---|
| 11 | #define __WIN32WMDICLIENT_H__
|
|---|
| 12 |
|
|---|
| 13 | #include <win32wbase.h>
|
|---|
| 14 | #include <mdi.h>
|
|---|
| 15 |
|
|---|
| 16 | #define MDICLIENTCLASSNAME "MDICLIENT"
|
|---|
| 17 |
|
|---|
| 18 | //******************************************************************************
|
|---|
| 19 | //******************************************************************************
|
|---|
| 20 | class Win32MDIClientWindow : public Win32BaseWindow
|
|---|
| 21 | {
|
|---|
| 22 | public:
|
|---|
| 23 | Win32MDIClientWindow(CREATESTRUCTA *lpCreateStructA, ATOM classAtom, BOOL isUnicode);
|
|---|
| 24 | virtual ~Win32MDIClientWindow();
|
|---|
| 25 |
|
|---|
| 26 | LRESULT MDIClientWndProc(UINT message, WPARAM wParam, LPARAM lParam);
|
|---|
| 27 |
|
|---|
| 28 | private:
|
|---|
| 29 | MDICLIENTINFO ci;
|
|---|
| 30 |
|
|---|
| 31 | };
|
|---|
| 32 | //******************************************************************************
|
|---|
| 33 | //******************************************************************************
|
|---|
| 34 | BOOL MDICLIENT_Register();
|
|---|
| 35 | BOOL MDICLIENT_Unregister();
|
|---|
| 36 |
|
|---|
| 37 | #endif //__WIN32WMDICLIENT_H__
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.