~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to server/mpm/winnt/Win9xConHook.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
/**
 
18
 * @file  Win9xConHook.h
 
19
 * @brief ??? 
 
20
 *
 
21
 * @addtogroup APACHE_MPM_WINNT
 
22
 * @{
 
23
 */
 
24
 
 
25
#ifndef AP_WIN9XCONHOOK_H
 
26
#define AP_WIN9XCONHOOK_H
 
27
 
 
28
#ifdef WIN32
 
29
 
 
30
/* Windows9xServiceCtrlHandler registers a handler routine, frees the
 
31
 * console window, and registers this process as a service in Win9x.
 
32
 * It creats a hidden window of class "ApacheWin95ServiceMonitor"
 
33
 * and titled by the name passed, which passes the WM_SHUTDOWN message 
 
34
 * through the given HandlerRoutine's CTRL_SHUTDOWN event.
 
35
 * Call with name of NULL to remove the Service handler.
 
36
 */
 
37
BOOL WINAPI Windows9xServiceCtrlHandler(PHANDLER_ROUTINE phandler, LPCSTR name);
 
38
 
 
39
 
 
40
/* FixConsoleControlHandler registers a handler routine with the
 
41
 * Win9xConHook.dll, creating a hidden window and forwarding the
 
42
 * WM_ENDSESSION and WM_CLOSE messages to the given HandlerRoutine
 
43
 * as CTRL_SHUTDOWN_EVENT, CTRL_LOGOFF_EVENT and CTRL_CLOSE_EVENT. 
 
44
 * The application should still use SetConsoleCtrlHandler to grab
 
45
 * the CTRL_BREAK_EVENT and CTRL_C_EVENT, if desired.
 
46
 */
 
47
BOOL WINAPI FixConsoleCtrlHandler(PHANDLER_ROUTINE phandler, BOOL add);
 
48
 
 
49
 
 
50
/*
 
51
 * Exported PostMessage Hook, never use this directly:
 
52
 *
 
53
 * LRESULT CALLBACK GetMsgProc(INT hc, WPARAM wParam, LPARAM lParam);
 
54
 */
 
55
 
 
56
 
 
57
/*
 
58
 * Exported SendMessage Hook, never use this directly:
 
59
 *
 
60
 * LRESULT CALLBACK CallWndProc(INT hc, WPARAM wParam, LPARAM lParam);
 
61
 */
 
62
 
 
63
#endif /* WIN32 */
 
64
 
 
65
#endif AP_WIN9XCONHOOK_H
 
66
/** @} */