Ignore:
Timestamp:
Jun 17, 1999, 8:22:43 PM (26 years ago)
Author:
phaller
Message:

Fix: major restructuring of Open32 handle management, HandleManager

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:30 phaller Exp $ */
     1/* $Id: conprop.h,v 1.4 1999-06-17 18:21:39 phaller Exp $ */
    22
    33/*
     
    1616 * Remark                                                                    *
    1717 *****************************************************************************
    18 
    1918 */
    20 
    21 
    22 /*****************************************************************************
    23  * Resources                                                                 *
    24  *****************************************************************************/
    25 
    26 #include "consolerc.h"
    27 
    2819
    2920/*****************************************************************************
     
    3122 *****************************************************************************/
    3223
    33 //#include <win32type.h>
    3424#include "handlemanager.h"
    3525#include "console2.h"
    36 #include <console.h>
     26#include "consolerc.h"
    3727
    3828
     
    4939 * Structures                                                                *
    5040 *****************************************************************************/
    51 
    52 
    53 typedef struct _Options
    54 {
    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;
    8741
    8842
     
    10357
    10458                                         /* read console properties from EAs */
    105 APIRET EXPENTRY ConsolePropertyRead(PCONSOLEOPTIONS pConsoleOptions);
     59APIRET EXPENTRY ConsolePropertyRead(PICONSOLEOPTIONS pConsoleOptions);
    10660
    10761
    10862                                          /* write console properties to EAs */
    109 APIRET EXPENTRY ConsolePropertyWrite(PCONSOLEOPTIONS pConsoleOptions);
     63APIRET EXPENTRY ConsolePropertyWrite(PICONSOLEOPTIONS pConsoleOptions);
    11064
    11165
Note: See TracChangeset for help on using the changeset viewer.