Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//*************************************************************
//
// Events.h - header file for events.c
//
// Microsoft Confidential
// Copyright (c) Microsoft Corporation 1995
// All rights reserved
//
//*************************************************************
#include "gpdasevt.h"
#include "smartptr.h"
class CEvents { private: BOOL m_bError; // the kind of error to log
DWORD m_dwId; // id of the msg
XPtrLF<LPTSTR> m_xlpStrings; // Array to store arguments
WORD m_cStrings; // Number of elements already in the array
WORD m_cAllocated; // Number of elements allocated
BOOL m_bInitialised; // Initialised ?
BOOL m_bFailed; // Failed in processing ?
// Not implemented.
CEvents(const CEvents& x); CEvents& operator=(const CEvents& x);
BOOL ReallocArgStrings();
public: CEvents(BOOL bError, DWORD dwId ); BOOL AddArg(LPTSTR szArg); BOOL AddArg(DWORD dwArg); BOOL AddArgHex(DWORD dwArg); BOOL Report(); ~CEvents(); };
extern TCHAR MessageResourceFile[]; BOOL ShutdownEvents (void);
|