Leaked source code of windows server 2003
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.
|
|
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
Mca.h
Abstract:
(See module header of Mca.cpp) Author:
Abdullah Ustuner (AUstuner) 30-August-2002
[Notes:]
Header file for Mca.cpp --*/
#ifndef MCA_H
#define MCA_H
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <wbemcli.h>
#include "mce.h"
#include "MCAObjectSink.h"
#include "Common.h"
#include "CorrectedEngine.h"
#include "FatalEngine.h"
#define TIME_OUT_MAX 60
//
// Function prototypes for Mca.cpp
//
BOOL MCAParseArguments( IN INT ArgumentCount, IN PWCHAR ArgumentList[] );
VOID MCAPrintTitle( VOID );
VOID MCAPrintUsage( VOID );
#endif
|