[1476] | 1 | /* $Id: conprop.h,v 1.6 1999-10-27 12:38:46 phaller Exp $ */
|
---|
[99] | 2 |
|
---|
[4] | 3 | /*
|
---|
| 4 | * Win32 Console Subsystem for OS/2
|
---|
| 5 | *
|
---|
| 6 | * 1998/03/06 PH Patrick Haller (haller@zebra.fh-weingarten.de)
|
---|
| 7 | *
|
---|
| 8 | * @(#) ConProp.Cpp 1.0.0 1998/03/06 PH start
|
---|
| 9 | */
|
---|
| 10 |
|
---|
| 11 | #ifndef _CONSOLEPROPERTY_H_
|
---|
| 12 | #define _CONSOLEPROPERTY_H_
|
---|
| 13 |
|
---|
| 14 |
|
---|
| 15 | /*****************************************************************************
|
---|
| 16 | * Remark *
|
---|
| 17 | *****************************************************************************
|
---|
| 18 | */
|
---|
| 19 |
|
---|
| 20 | /*****************************************************************************
|
---|
| 21 | * Includes *
|
---|
| 22 | *****************************************************************************/
|
---|
| 23 |
|
---|
| 24 | #include "handlemanager.h"
|
---|
| 25 | #include "console2.h"
|
---|
[111] | 26 | #include "consolerc.h"
|
---|
[4] | 27 |
|
---|
| 28 |
|
---|
| 29 | /*****************************************************************************
|
---|
| 30 | * Defines & Macros *
|
---|
| 31 | *****************************************************************************/
|
---|
| 32 |
|
---|
| 33 | /* this is sent after properties have been read properly from disk */
|
---|
| 34 | #define UM_PROPERTY_APPLY WM_USER + 0x10
|
---|
| 35 | #define UM_PROPERTY_UNDO WM_USER + 0x11
|
---|
| 36 |
|
---|
| 37 |
|
---|
| 38 | /*****************************************************************************
|
---|
| 39 | * Structures *
|
---|
| 40 | *****************************************************************************/
|
---|
| 41 |
|
---|
| 42 |
|
---|
| 43 | /*****************************************************************************
|
---|
| 44 | * Prototypes *
|
---|
| 45 | *****************************************************************************/
|
---|
| 46 |
|
---|
| 47 | #ifdef __cplusplus
|
---|
| 48 | extern "C" {
|
---|
| 49 | #endif
|
---|
| 50 |
|
---|
| 51 |
|
---|
| 52 | MRESULT EXPENTRY ConsolePropertyDlgProc(HWND hwnd,
|
---|
| 53 | ULONG ulMessage,
|
---|
| 54 | MPARAM mp1,
|
---|
| 55 | MPARAM mp2);
|
---|
| 56 |
|
---|
[1476] | 57 | /* default console properties */
|
---|
| 58 | DWORD ConsolePropertyDefault(PICONSOLEOPTIONS pConsoleOptions);
|
---|
[767] | 59 | /* read console properties */
|
---|
[1476] | 60 | DWORD ConsolePropertyLoad(PICONSOLEOPTIONS pConsoleOptions);
|
---|
[4] | 61 |
|
---|
[767] | 62 | /* write console properties */
|
---|
[1476] | 63 | DWORD ConsolePropertySave(PICONSOLEOPTIONS pConsoleOptions);
|
---|
[4] | 64 |
|
---|
[767] | 65 | /* apply console properties */
|
---|
[1476] | 66 | DWORD ConsolePropertyApply(PICONSOLEOPTIONS pConsoleOptions);
|
---|
[4] | 67 |
|
---|
| 68 | #ifdef __cplusplus
|
---|
| 69 | }
|
---|
| 70 | #endif
|
---|
| 71 |
|
---|
| 72 |
|
---|
| 73 | #endif /* _CONSOLEPROPERTY_H_ */
|
---|