Source code of Windows XP (NT5)
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, 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_
|