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.
25 lines
523 B
25 lines
523 B
// Dspecup.lib interface
|
|
// Copyright (c) 2001 Microsoft Corporation
|
|
// Jun 2001 lucios
|
|
|
|
#ifndef DSPECUP_HPP
|
|
#define DSPECUP_HPP
|
|
|
|
extern "C"
|
|
{
|
|
typedef void (*progressFunction)(long arg, void *calleeStruct);
|
|
|
|
HRESULT
|
|
UpgradeDisplaySpecifiers
|
|
(
|
|
PWSTR logFilesPath,
|
|
GUID *OperationGuid,
|
|
BOOL dryRun,
|
|
PWSTR *errorMsg=NULL,
|
|
void *caleeStruct=NULL,
|
|
progressFunction stepIt=NULL,
|
|
progressFunction totalSteps=NULL
|
|
);
|
|
}
|
|
|
|
#endif
|