-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCONSOLE.H
More file actions
19 lines (17 loc) · 782 Bytes
/
CONSOLE.H
File metadata and controls
19 lines (17 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef CONSOLE_DOT_H
#define CONSOLE_DOT_H
#include <windows.h>
/* console.h
Implements the Console Window
Author Date Comment
----------- --------- ----------------------------
Azimer 12-04-99 Initial Version
*/
ATOM RegisterConsoleClass (HINSTANCE hInstance); // Registers the Console Window
LRESULT CALLBACK ConsoleProc(HWND, UINT, WPARAM, LPARAM); // Console Windows's main windows proc.
void CreateConsoleWindow (bool shouldHide); // Makes a console window
void ToggleConsoleWindow (); // Turns the console window on and off
void DestroyConsoleWindow (); // Kills the Console Window
void ClearConsoleWindow (); // Clears the Window
// dprintf is defined in WinMain to give access to other files but no access to the above functions
#endif