-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource.h
28 lines (24 loc) · 1.21 KB
/
resource.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/***********************************************************************/
/* */
/* resource.h: Header file for windows resource constants */
/* */
/* Copyright (C) 2015 Yak! / Yasutaka ATARASHI */
/* */
/* This software is distributed under the terms of a zlib/libpng */
/* License. */
/* */
/* $Id$ */
/* */
/***********************************************************************/
#ifndef RESOURCE_H
#define RESOURCE_H
#ifndef IDC_STATIC
#define IDC_STATIC (-1)
#endif
#define IDV_VERSIONINFO 1
#define IDD_ABOUT_DIALOG 101
#define IDD_PROGRESS_DIALOG 102
#define IDR_ERROR_IMAGE 103
#define IDC_PROGRESSBAR 1001
#define IDC_PROGRESSTEXT 1002
#endif