mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 04:23:32 +00:00
[SETUPLIB][USETUP] Add support for setup error handling.
This commit is contained in:
parent
64e217e97c
commit
f894631472
3 changed files with 35 additions and 0 deletions
|
@ -58,8 +58,15 @@ extern HANDLE ProcessHeap;
|
|||
|
||||
struct _USETUP_DATA;
|
||||
|
||||
typedef VOID
|
||||
(__cdecl *PSETUP_ERROR_ROUTINE)(IN struct _USETUP_DATA*, ...);
|
||||
|
||||
typedef struct _USETUP_DATA
|
||||
{
|
||||
/* Error handling *****/
|
||||
ERROR_NUMBER LastErrorNumber;
|
||||
PSETUP_ERROR_ROUTINE ErrorRoutine;
|
||||
|
||||
/* Setup INFs *****/
|
||||
HINF SetupInf;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue