diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-12-30 15:12:26 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-12-30 18:40:49 -0600 |
commit | 84a1b0f8ffe40a26916b1dfb3e1b59b6b0c31ad4 (patch) | |
tree | bb830b599bf014c1e93f319b4d8a349d60eb8b53 /src/burn/engine/inc/engine.h | |
parent | c86f75bcc104d5dc457fa2900a3ebb9c38f6ff65 (diff) | |
download | wix-84a1b0f8ffe40a26916b1dfb3e1b59b6b0c31ad4.tar.gz wix-84a1b0f8ffe40a26916b1dfb3e1b59b6b0c31ad4.tar.bz2 wix-84a1b0f8ffe40a26916b1dfb3e1b59b6b0c31ad4.zip |
Add BURN_PROTOCOL_VERSION in registration to avoid version checks.
Also, old versions of Burn should ignore ancestors if they doesn't support them.
Diffstat (limited to 'src/burn/engine/inc/engine.h')
-rw-r--r-- | src/burn/engine/inc/engine.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/burn/engine/inc/engine.h b/src/burn/engine/inc/engine.h index b80b4213..9b29dd84 100644 --- a/src/burn/engine/inc/engine.h +++ b/src/burn/engine/inc/engine.h | |||
@@ -9,6 +9,8 @@ | |||
9 | #define BURN_SECTION_MAGIC 0x00f14300 | 9 | #define BURN_SECTION_MAGIC 0x00f14300 |
10 | #define BURN_SECTION_VERSION 0x00000002 | 10 | #define BURN_SECTION_VERSION 0x00000002 |
11 | 11 | ||
12 | // This needs to be incremented whenever a breaking change is made to the Burn protocol. | ||
13 | #define BURN_PROTOCOL_VERSION 1 | ||
12 | 14 | ||
13 | #if defined(__cplusplus) | 15 | #if defined(__cplusplus) |
14 | extern "C" { | 16 | extern "C" { |