xtd 0.2.0
Loading...
Searching...
No Matches
message_notifier_styles.h
1#pragma once
2#if !defined(__XTD_FORMS_NATIVE_LIBRARY__)
3#error "Do not include this file: Internal use only"
4#endif
5
6#include <cstddef>
7// TODO: Documentation
8
9// https://docs.microsoft.com/en-us/windows/win32/api/shellapi/ns-shellapi-notifyicondataa
10
11#if !defined(NIIF_INFO)
12
13// An information icon.
14constexpr size_t NIIF_INFO = 0x00000001;
15
16// A warning icon.
17constexpr size_t NIIF_WARNING = 0x00000002;
18
19// An error icon.
20constexpr size_t NIIF_ERROR = 0x00000003;
21
22
23#endif