Ignore:
Timestamp:
Oct 1, 2001, 3:47:01 AM (24 years ago)
Author:
bird
Message:

Watcom: _beginthread is defined in process.h.

File:
1 edited

Legend:

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

    r5471 r6921  
    1 /* $Id: console.cpp,v 1.27 2001-04-04 09:00:57 sandervl Exp $ */
     1/* $Id: console.cpp,v 1.28 2001-10-01 01:47:01 bird Exp $ */
    22
    33/*
     
    5353*   Header Files                                                               *
    5454*******************************************************************************/
     55#include <process.h>
    5556#include <stdlib.h>
    5657#include <string.h>
     
    448449                                CONSOLE_TEXTMODE_BUFFER,
    449450                                0);
    450  
     451
    451452   HMSetStdHandle(STD_INPUT_HANDLE,
    452453                  hStandardIn);
    453  
     454
    454455   /***********************************************************************
    455456    * initialize stdout handle                                            *
     
    465466                                 CONSOLE_TEXTMODE_BUFFER,
    466467                                 0);
    467  
     468
    468469   HMSetStdHandle(STD_OUTPUT_HANDLE,
    469470                  hStandardOut);
    470  
     471
    471472   /***********************************************************************
    472473    * initialize stderr handle                                            *
     
    482483                                   CONSOLE_TEXTMODE_BUFFER,
    483484                                   0);
    484  
     485
    485486   HMSetStdHandle(STD_ERROR_HANDLE,
    486487                  hStandardError);
Note: See TracChangeset for help on using the changeset viewer.