-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutomaticProductName.h
More file actions
27 lines (24 loc) · 965 Bytes
/
AutomaticProductName.h
File metadata and controls
27 lines (24 loc) · 965 Bytes
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
#pragma once
#ifndef AUTOMATICPRODUCTNAME_H
#define AUTOMATICPRODUCTNAME_H 1
#ifdef _WIN64
#ifdef UNICODE
#define ORIGINAL_FILENAME L"etherwake (x64 Unicode) (MSVC)\0"
#define PRODUCT_NAME L"etherwake - Version 1.0.04.016\r\n(Build 86) - (x64 Unicode) (MSVC)\0"
#else
#define ORIGINAL_FILENAME "etherwake (x64 MBCS) (MSVC)\0"
#define PRODUCT_NAME "etherwake - Version 1.0.04.016\r\n(Build 86) - (x64 MBCS) (MSVC)\0"
#endif
#elif _WIN32
#ifdef UNICODE
#define ORIGINAL_FILENAME L"etherwake (x86 Unicode) (MSVC)\0"
#define PRODUCT_NAME L"etherwake - Version 1.0.04.016\r\n(Build 86) - (x86 Unicode) (MSVC)\0"
#else
#define ORIGINAL_FILENAME "etherwake (x86 MBCS) (MSVC)\0"
#define PRODUCT_NAME "etherwake - Version 1.0.04.016\r\n(Build 86) - (x86 MBCS) (MSVC)\0"
#endif
#else
#define ORIGINAL_FILENAME "etherwake (MSVC)\0"
#define PRODUCT_NAME "etherwake - Version 1.0.04.016\r\n(Build 86) - (MSVC)\0"
#endif
#endif