27 lines
803 B
C++
27 lines
803 B
C++
//----------------------------------------------------------------------------
|
||
//
|
||
// Copyright (C) 2008 Intel Corporation
|
||
//
|
||
// File: WS-EventingFlow.h
|
||
//
|
||
// Contents: API code for Intel(R) Active Management Technology
|
||
// (Intel<65> AMT) WS-Eventing Sample.
|
||
//
|
||
// Notes: This file contains the WS-EventingFlow methods .
|
||
//
|
||
//----------------------------------------------------------------------------
|
||
|
||
#ifndef WS_EVENTING_FLOW_H
|
||
#define WS_EVENTING_FLOW_H
|
||
#include <string>
|
||
#include "CimWsman.h"
|
||
|
||
using namespace Intel::WSManagement;
|
||
|
||
|
||
void RegisterAllEvents(ICimWsmanClient* wsmanClient, bool verbose);
|
||
void UnRegisterAllEvents(ICimWsmanClient* wsmanClient, bool verbose);
|
||
void EnumerateSubscribers(ICimWsmanClient* wsmanClient, bool verbose);
|
||
|
||
#endif //WS_EVENTING_FLOW_H
|