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
921 B
34 lines
921 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
// File: N C I N F . H
|
|
//
|
|
// Contents: ???
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: ???
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
#ifndef _NCINF_H_
|
|
#define _NCINF_H_
|
|
|
|
typedef HRESULT (CALLBACK *PFNADDCALLBACK) (HINF hinf, PCWSTR pszSection);
|
|
typedef HRESULT (CALLBACK *PFNREMOVECALLBACK) (HINF hinf, PCWSTR pszSection);
|
|
typedef HRESULT (CALLBACK *PFNHRENTRYPOINT) (PCWSTR, LPGUID);
|
|
|
|
HRESULT
|
|
HrProcessInfExtension (
|
|
HINF hinfInstallFile,
|
|
PCWSTR pszSectionName,
|
|
PCWSTR pszSuffix,
|
|
PCWSTR pszAddLabel,
|
|
PCWSTR pszRemoveLabel,
|
|
PFNADDCALLBACK pfnHrAdd,
|
|
PFNREMOVECALLBACK pfnHrRemove);
|
|
|
|
#endif //_NCINF_H_
|