mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
687b281b47
* Formatting, coding style, variable & function name * Progress dialog: label position and background
10 lines
286 B
C
10 lines
286 B
C
#pragma once
|
|
|
|
#define NOMINMAX
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <Windows.h>
|
|
|
|
void OpenProgressBarDialog(HINSTANCE hInstance, const int nProgressbarSteps, const wchar_t* title, const wchar_t* label);
|
|
void UpdateProgressBarDialog(const wchar_t* label);
|
|
void CloseProgressBarDialog();
|