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.
37 lines
576 B
37 lines
576 B
#ifndef DSPECUP_HPP
|
|
#define DSPECUP_HPP
|
|
|
|
|
|
typedef void (*progressFunction)(long arg, void *calleeStruct);
|
|
|
|
HRESULT
|
|
UpgradeDisplaySpecifiers
|
|
(
|
|
BOOL dryRun,
|
|
PWSTR *errorMsg=NULL,
|
|
void *caleeStruct=NULL,
|
|
progressFunction stepIt=NULL,
|
|
progressFunction totalSteps=NULL
|
|
);
|
|
|
|
|
|
HRESULT
|
|
RunAnalisys
|
|
(
|
|
PWSTR *errorMsg=NULL,
|
|
void *caleeStruct=NULL,
|
|
progressFunction stepIt=NULL,
|
|
progressFunction totalSteps=NULL
|
|
);
|
|
|
|
HRESULT
|
|
RunRepair
|
|
(
|
|
PWSTR *errorMsg=NULL,
|
|
void *caleeStruct=NULL,
|
|
progressFunction stepIt=NULL,
|
|
progressFunction totalSteps=NULL
|
|
);
|
|
|
|
|
|
#endif
|