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.
|
|
//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1999 - 1999
//
// File: dummysi.h
//
//--------------------------------------------------------------------------
#ifndef DUMMYSI_H
#define DUMMYSI_H
#pragma once
// Different reasons for which a dummy snapin is created.
enum EDummyCreateReason { eNoReason = 0, eSnapPolicyFailed, eSnapCreateFailed, };
SC ScCreateDummySnapin (IComponentData ** ppICD, EDummyCreateReason, const CLSID& clsid); void ReportSnapinInitFailure(const CLSID& clsid);
extern const GUID IID_CDummySnapinCD;
#endif /* DUMMYSI_H */
|