mirror of https://github.com/lianthony/NT4.0
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.
22 lines
704 B
22 lines
704 B
/* --------------------------------------------------------------------
|
|
|
|
Microsoft OS/2 LAN Manager
|
|
Copyright(c) Microsoft Corp., 1990
|
|
|
|
Standard Out Package for Windows - Written by Steven Zeck
|
|
|
|
|
|
This file contains the public interfaces for the standard I/O
|
|
under windows.
|
|
-------------------------------------------------------------------- */
|
|
|
|
BOOL StdioInit(HANDLE hInstance, LPSTR szCaption);
|
|
|
|
void Wopen(HWND hWndParent, LPSTR szCaption);
|
|
HWND CreateStdioWindow(LPSTR szCaption, DWORD dwstyle,
|
|
int xPos, int yPos, int xSize, int ySize,
|
|
HWND hWndParent, HANDLE hInstance);
|
|
|
|
void puts(void * sz);
|
|
void putc(char c);
|
|
void printf(char *format, ...);
|