mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
471 B
40 lines
471 B
/*++
|
|
|
|
Copyright (c) 1990 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ulibcl.hxx
|
|
|
|
Abstract:
|
|
|
|
This module contains declarations that the clients of
|
|
ULIB.DLL require.
|
|
|
|
Author:
|
|
|
|
Bill McJohn (billmc) 17-May-1991
|
|
|
|
Environment:
|
|
|
|
ULIB Clients, User Mode
|
|
|
|
--*/
|
|
|
|
#if ! defined( _ULIBCLIENTDEFN_ )
|
|
|
|
#define _ULIBCLIENTDEFN_
|
|
|
|
ULIB_EXPORT
|
|
PSTREAM
|
|
Get_Standard_Input_Stream();
|
|
|
|
ULIB_EXPORT
|
|
PSTREAM
|
|
Get_Standard_Output_Stream();
|
|
|
|
ULIB_EXPORT
|
|
PSTREAM
|
|
Get_Standard_Error_Stream();
|
|
|
|
#endif
|