WindowsXP-SP1/admin/dsutils/displayspecifierupgrade/dspecup.hpp
2020-09-30 16:53:49 +02:00

37 lines
612 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