eventlog.h

来自「一个开源的网络开发库ACE」· C头文件 代码 · 共 62 行

H
62
字号
/*
 * eventlog.h,v 1.4 2000/09/22 19:30:37 brunsch Exp
 *
 * Copyright (c) 1994, 1995.  Netscape Communications Corporation.  All
 * rights reserved.
 *
 * Use of this software is governed by the terms of the license agreement for
 * the Netscape Communications or Netscape Comemrce Server between the
 * parties.
 */


/* ------------------------------------------------------------------------ */


// EVENTLOG.H
//
// This file contains the defines that make NT an installable service.
//
// 1/12/95 aruna
//

// Functions in eventlog.c
// Win32 specific stuff, so FUZZ: disable check_for_tchar

VOID InitializeAdminLogging(PCHAR ServiceName, PCHAR MessageFile);
VOID InitializeHttpdLogging(PCHAR ServiceName, PCHAR MessageFile);
VOID InitializeHttpsLogging(PCHAR ServiceName, PCHAR MessageFile);

VOID TerminateAdminLogging();
VOID TerminateHttpdLogging();
VOID TerminateHttpsLogging();

VOID LogErrorEvent(PCHAR ServiceName, WORD fwEventType, WORD fwCategory, DWORD IDEvent,
        LPTSTR chMsg, LPTSTR lpszMsg);

// Functions in error.c

VOID ReportError(PCHAR ErrorMsg);

BOOL CALLBACK ErrorDialogProc(
        HWND hDlg,
        UINT message,
        WPARAM wParam,
        LPARAM lParam
        );















⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?