17 lines
480 B
C
17 lines
480 B
C
#pragma once
|
|
// installer.h — Shared constants for installer and resource script
|
|
|
|
// Resource IDs
|
|
#define IDI_CODEMAX 101
|
|
#define IDR_EXE_TERMINAL 201
|
|
#define IDR_EXE_GUI 202
|
|
|
|
// Product info
|
|
#define CODEMAX_APP_NAME "codemax"
|
|
#define CODEMAX_DISPLAY_NAME "codeMAX"
|
|
#define CODEMAX_VERSION "1.0.0"
|
|
#define CODEMAX_PUBLISHER "codeMAX"
|
|
|
|
// Registry
|
|
#define CODEMAX_UNINSTALL_KEY "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\codeMAX"
|