ReactOS 0.4.16-dev-1399-gaaed9f7
indicml.h
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS headers
3 * LICENSE: LGPL-2.0-or-later (https://spdx.org/licenses/LGPL-2.0-or-later)
4 * PURPOSE: Indicator (internat.exe) window class
5 * COPYRIGHT: Copyright 2025 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
6 */
7
8#ifndef _INDICML_
9#define _INDICML_
10
11#pragma once
12
13#define INDICATOR_CLASSW L"Indicator"
14#define INDICATOR_CLASSA "Indicator"
15
16#ifdef UNICODE
17#define INDICATOR_CLASS INDICATOR_CLASSW
18#else
19#define INDICATOR_CLASS INDICATOR_CLASSA
20#endif
21
22#define INDICM_SETIMEICON (WM_USER + 100)
23#define INDICM_SETIMETOOLTIPS (WM_USER + 101)
24#define INDICM_REMOVEDEFAULTMENUITEMS (WM_USER + 102)
25
26/* wParam flags for INDICM_REMOVEDEFAULTMENUITEMS */
27#define RDMI_LEFT 1
28#define RDMI_RIGHT 2
29
30#endif /* ndef _INDICML_ */