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
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#pragma once
#include "protocol.h"
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <zlib.h>
#if INTPTR_MAX == INT32_MAX
#define PRNE_HOST_WORDSIZE 32
#elif INTPTR_MAX == INT64_MAX
#define PRNE_HOST_WORDSIZE 64
#else
#error "FIXME!"
#endif
#define PRNE_PROG_VER {\
0x11, 0xf7, 0x6b, 0x87, 0x62, 0x1a, 0x47, 0x9c,\
0xa2, 0x18, 0x5c, 0x55, 0x40, 0x33, 0x7c, 0x9f\
}
#define PRNE_SHG_SALT {\
0x31, 0xe4, 0xf1, 0x7c, 0xdb, 0x76, 0x43, 0x32,\
0xaf, 0x48, 0xfd, 0x9f, 0xb8, 0x45, 0x3f, 0x8f\
}
#define PRNE_VER_MAT {\
/* 76f2f748-3b6f-420c-abd7-e9929a0b67d6: placeholder version 1 */\
/* Remove it when you add the first old version */\
0x76, 0xf2, 0xf7, 0x48, 0x3b, 0x6f, 0x42, 0x0c,\
0xab, 0xd7, 0xe9, 0x92, 0x9a, 0x0b, 0x67, 0xd6,\
/* ce6fe199-5595-49a1-96c6-261d1cce9e32: placeholder version 2 */\
/* Remove it when you add the first old version */\
0xce, 0x6f, 0xe1, 0x99, 0x55, 0x95, 0x49, 0xa1,\
0x96, 0xc6, 0x26, 0x1d, 0x1c, 0xce, 0x9e, 0x32\
}
#define PRNE_PACK_Z_LEVEL Z_DEFAULT_COMPRESSION
extern const prne_arch_t prne_host_arch;
|