Ignore:
Timestamp:
Jan 29, 2001, 1:43:33 AM (25 years ago)
Author:
bird
Message:

Corrected a couple of syntax errors (which stricter compilers don't like).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/console.cpp

    r4525 r5034  
    1 /* $Id: console.cpp,v 1.23 2000-10-23 19:35:10 sandervl Exp $ */
     1/* $Id: console.cpp,v 1.24 2001-01-29 00:43:33 bird Exp $ */
    22
    33/*
     
    5050
    5151
    52 /*****************************************************************************
    53  * Includes                                                                  *
    54  *****************************************************************************/
    55 
     52/*******************************************************************************
     53*   Header Files                                                               *
     54*******************************************************************************/
    5655#include <builtin.h>
    5756#include <stdlib.h>
     
    9392#include <os2sel.h>
    9493
    95 /*****************************************************************************
    96  * Defines                                                                   *
    97  *****************************************************************************/
    98 
    99 /*****************************************************************************
    100  * Structures                                                                *
    101  *****************************************************************************/
    102 
    103 
    104 /*****************************************************************************
    105  * Process Global Structures                                                 *
    106  *****************************************************************************/
    107 
     94
     95/*******************************************************************************
     96*   Process Global Structures                                                  *
     97*******************************************************************************/
    10898static ICONSOLEGLOBALS ConsoleGlobals;
    10999static ICONSOLEINPUT   ConsoleInput;
    110        BOOL            flVioConsole = FALSE;
    111 
    112 /*****************************************************************************
    113  * Prototypes                                                                *
    114  *****************************************************************************/
     100BOOL                   flVioConsole = FALSE;
     101
     102/*******************************************************************************
     103*   Internal Functions                                                         *
     104*******************************************************************************/
     105static void iConsoleInputQueueLock();
     106static void iConsoleInputQueueUnlock();
    115107
    116108
     
    127119 *****************************************************************************/
    128120
    129 void static iConsoleInputQueueLock()
     121static void iConsoleInputQueueLock()
    130122{
    131123  APIRET rc;
     
    151143 *****************************************************************************/
    152144
    153 void static iConsoleInputQueueUnlock()
     145static void iConsoleInputQueueUnlock()
    154146{
    155147  APIRET rc;
     
    326318  DWORD rc;
    327319
    328   static fDevicesInitialized;          /* have we been initialized already ? */
     320  static BOOL fDevicesInitialized;     /* have we been initialized already ? */
    329321
    330322  if (fDevicesInitialized == TRUE)                 /* OK, we're already done */
Note: See TracChangeset for help on using the changeset viewer.