windows-nt/Source/XPSP1/NT/admin/dsutils/displayspecifierupgrade/dspecup.hpp
2020-09-26 16:20:57 +08:00

37 lines
576 B
C++

#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