mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
4d0cc20681
* [IERNONCE] Implement the registry management code. * [EXPLORER] handle RunOnceEx by invoking RunOnceEx in iernonce.dll * [IERNONCE] Display a dialog to show progress, and execute entries. * [IERNONCE] Add `InitCallback` function
24 lines
521 B
C
24 lines
521 B
C
/*
|
|
* PROJECT: ReactOS system libraries
|
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
|
* PURPOSE: ReactOS Extended RunOnce processing with UI.
|
|
* COPYRIGHT: Copyright 2021 He Yang <1160386205@qq.com>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cassert>
|
|
#include <cstdlib>
|
|
|
|
#define WIN32_NO_STATUS
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <windowsx.h>
|
|
#include <shlwapi.h>
|
|
#include <iernonce_undoc.h>
|
|
|
|
#include <atlbase.h>
|
|
#include <atlwin.h>
|
|
|
|
#include "registry.h"
|
|
#include "dialog.h"
|