blob: fbb57e124170f6d5c7a0a2dc6477dfe5cf8c13e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (C) 2021-2021 Fuwn
// SPDX-License-Identifier: GPL-3.0-only
#ifndef SOYUZ_RESOURCE_HH
#define SOYUZ_RESOURCE_HH
#pragma once
#include <shellapi.h>
#include <Windows.h>
#define ICO1 101
#define ID_TRAY_APP_ICON 1001
#define ID_TRAY_EXIT 1002
#define WM_SYSICON (WM_USER + 1)
#endif //SOYUZ_RESOURCE_HH
|