mirror of https://github.com/tongzx/nt5src
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.
34 lines
697 B
34 lines
697 B
//____________________________________________________________________________
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1995 - 1996.
|
|
//
|
|
// File: SnpInReg.h
|
|
//
|
|
// Contents:
|
|
//
|
|
// Classes:
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: 11/10/1998 JonN Created
|
|
//
|
|
//____________________________________________________________________________
|
|
|
|
|
|
#ifndef _SNPINREG_H_
|
|
#define _SNPINREG_H_
|
|
|
|
HRESULT RegisterSnapin(
|
|
AMC::CRegKey& regkeySnapins,
|
|
LPCTSTR pszSnapinGUID,
|
|
BSTR bstrPrimaryNodetype,
|
|
UINT residSnapinName,
|
|
UINT residProvider,
|
|
UINT residVersion,
|
|
bool fStandalone,
|
|
LPCTSTR pszAboutGUID,
|
|
int* aiNodetypeIndexes,
|
|
int cNodetypeIndexes );
|
|
|
|
#endif // _SNPINREG_H_
|