reactos/dll/win32/iernonce/iernonce.h
He Yang 4d0cc20681
[IERNONCE] [RUNONCEEX] Add RunOnceEx functionality for ReactOS (#3926)
* [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
2021-09-29 11:30:32 +02:00

25 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"