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.
28 lines
623 B
28 lines
623 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1993.
|
|
//
|
|
// File: output.h
|
|
//
|
|
// Contents: Declarations for String output functions.
|
|
//
|
|
// Classes:
|
|
//
|
|
// Functions: OutputInitialize()
|
|
// OutputString()
|
|
//
|
|
// History: dd-mmm-yy Author Comment
|
|
// 22-Mar-94 alexgo author
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef _OUTPUT_H
|
|
#define _OUTPUT_H
|
|
|
|
int OutputString( char *szFormat, ... );
|
|
void SaveToFile( void );
|
|
|
|
#endif // !_OUTPUT_H
|
|
|
|
|