mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 02:39:22 +08:00
9735459552
* bootstrapper: use WinAPI progress bar window instead of toast notifications * remove obsolete msi action
9 lines
301 B
C
9 lines
301 B
C
#pragma once
|
|
|
|
#define NOMINMAX
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <Windows.h>
|
|
|
|
void open_progressbar_window(HINSTANCE hInstance, const int n_progressbar_steps, const wchar_t* title, const wchar_t* init_label);
|
|
void tick_progressbar_window(const wchar_t* new_status);
|
|
void close_progressbar_window(); |