resource.h 701 B

12345678910111213141516
  1. #pragma once
  2. /** The first module-local RCDATA identifier owns the bundled default settings document. */
  3. #define IDR_DEFAULT_SETTINGS 101
  4. /** The next module-local RCDATA identifier embeds the required Dear ImGui MIT notice. */
  5. #define IDR_IMGUI_LICENSE 102
  6. /** The next module-local RCDATA identifier embeds the required Microsoft Detours notice. */
  7. #define IDR_DETOURS_LICENSE 103
  8. /** The four numeric fields of the version resource, in FILEVERSION order. */
  9. #define SUNRISE_VER_MAJOR 0
  10. #define SUNRISE_VER_MINOR 2
  11. #define SUNRISE_VER_PATCH 1
  12. #define SUNRISE_VER_BUILD 0
  13. /** The same version as display text. Windows shows this string, not the four fields. */
  14. #define SUNRISE_VER_STRING "0.2.1.0"