upload http
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / server / mpm / winnt / Win9xConHook.h
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements.  See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License.  You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef AP_WIN9XCONHOOK_H
18 #define AP_WIN9XCONHOOK_H
19
20 #ifdef WIN32
21
22 /* Windows9xServiceCtrlHandler registers a handler routine, frees the
23  * console window, and registers this process as a service in Win9x.
24  * It creats a hidden window of class "ApacheWin95ServiceMonitor"
25  * and titled by the name passed, which passes the WM_SHUTDOWN message 
26  * through the given HandlerRoutine's CTRL_SHUTDOWN event.
27  * Call with name of NULL to remove the Service handler.
28  */
29 BOOL WINAPI Windows9xServiceCtrlHandler(PHANDLER_ROUTINE phandler, LPCSTR name);
30
31
32 /* FixConsoleControlHandler registers a handler routine with the
33  * Win9xConHook.dll, creating a hidden window and forwarding the
34  * WM_ENDSESSION and WM_CLOSE messages to the given HandlerRoutine
35  * as CTRL_SHUTDOWN_EVENT, CTRL_LOGOFF_EVENT and CTRL_CLOSE_EVENT. 
36  * The application should still use SetConsoleCtrlHandler to grab
37  * the CTRL_BREAK_EVENT and CTRL_C_EVENT, if desired.
38  */
39 BOOL WINAPI FixConsoleCtrlHandler(PHANDLER_ROUTINE phandler, BOOL add);
40
41
42 /*
43  * Exported PostMessage Hook, never use this directly:
44  *
45  * LRESULT CALLBACK GetMsgProc(INT hc, WPARAM wParam, LPARAM lParam);
46  */
47
48
49 /*
50  * Exported SendMessage Hook, never use this directly:
51  *
52  * LRESULT CALLBACK CallWndProc(INT hc, WPARAM wParam, LPARAM lParam);
53  */
54
55 #endif /* WIN32 */
56
57 #endif AP_WIN9XCONHOOK_H