eventlog.h

来自「ace开发环境 用来开发网络程序 其运用了设计模式、多平台、C++等多种知识」· C头文件 代码 · 共 62 行

H
62
字号
/* * $Id: eventlog.h 35245 2000-09-22 19:30:37Z brunsch $ * * 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_tcharVOID 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.cVOID ReportError(PCHAR ErrorMsg);BOOL CALLBACK ErrorDialogProc(        HWND hDlg,        UINT message,        WPARAM wParam,        LPARAM lParam        );

⌨️ 快捷键说明

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