Release 951226
[wine] / win32 / console.c
1 /*
2  * Win32 kernel functions
3  *
4  * Copyright 1995 Martin von Loewis and Cameron Heide
5  */
6
7 #include <stdio.h>
8 #include "windows.h"
9 #include "winerror.h"
10 #include "kernel32.h"
11 #include "wincon.h"
12 #include "stddebug.h"
13 #include "debug.h"
14
15 /***********************************************************************
16  *           SetConsoleCtrlHandler               (KERNEL32.459)
17  */
18 BOOL SetConsoleCtrlHandler(HANDLER_ROUTINE * func,  BOOL a)
19 {
20         return 0;
21 }
22