Changeset 111 for trunk/src/kernel32/conprop.h
- Timestamp:
- Jun 17, 1999, 8:22:43 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/conprop.h
r99 r111 1 /* $Id: conprop.h,v 1. 3 1999-06-10 19:11:30phaller Exp $ */1 /* $Id: conprop.h,v 1.4 1999-06-17 18:21:39 phaller Exp $ */ 2 2 3 3 /* … … 16 16 * Remark * 17 17 ***************************************************************************** 18 19 18 */ 20 21 22 /*****************************************************************************23 * Resources *24 *****************************************************************************/25 26 #include "consolerc.h"27 28 19 29 20 /***************************************************************************** … … 31 22 *****************************************************************************/ 32 23 33 //#include <win32type.h>34 24 #include "handlemanager.h" 35 25 #include "console2.h" 36 #include <console.h>26 #include "consolerc.h" 37 27 38 28 … … 49 39 * Structures * 50 40 *****************************************************************************/ 51 52 53 typedef struct _Options54 {55 HMODULE hmodResources; /* module handle for PM resources */56 57 BOOL fTerminateAutomatically; /* wait for window termination or not */58 BOOL fSpeakerEnabled; /* whether we process BEL 0x07 or not */59 ULONG ulSpeakerDuration; /* duration and frequency for speaker beep */60 ULONG ulSpeakerFrequency;61 ULONG ulUpdateLimit; /* when exceeding this line counter, automatic */62 /* screen update is performed */63 64 BOOL fSetWindowPosition; /* TRUE if window has to be positioned */65 66 COORD coordDefaultPosition; /* default position of the console window */67 COORD coordDefaultSize; /* default size of the console window */68 COORD coordBufferSize; /* size of the console buffer */69 70 BOOL fQuickInsert; /* like NT's quick insert mode */71 BOOL fInsertMode; /* insert mode */72 BOOL fMouseActions; /* like Warp 4's "mouse action" mode */73 BOOL fToolbarActive; /* windows95-like toolbar on / off */74 75 ULONG ulTabSize; /* tabulator size */76 77 UCHAR ucDefaultAttribute; /* the default text attribute */78 79 UCHAR ucCursorDivisor; /* cursor timer divisor for blinking */80 81 ULONG ulConsoleThreadPriorityClass; /* priority settings for message */82 ULONG ulConsoleThreadPriorityDelta; /* thread */83 ULONG ulAppThreadPriorityClass; /* priority settings for application */84 ULONG ulAppThreadPriorityDelta; /* thread */85 86 } CONSOLEOPTIONS, *PCONSOLEOPTIONS;87 41 88 42 … … 103 57 104 58 /* read console properties from EAs */ 105 APIRET EXPENTRY ConsolePropertyRead(P CONSOLEOPTIONS pConsoleOptions);59 APIRET EXPENTRY ConsolePropertyRead(PICONSOLEOPTIONS pConsoleOptions); 106 60 107 61 108 62 /* write console properties to EAs */ 109 APIRET EXPENTRY ConsolePropertyWrite(P CONSOLEOPTIONS pConsoleOptions);63 APIRET EXPENTRY ConsolePropertyWrite(PICONSOLEOPTIONS pConsoleOptions); 110 64 111 65
Note:
See TracChangeset
for help on using the changeset viewer.