From 86cf157c139f7fec703b2110a0c71a00fde13dd2 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Wed, 28 Apr 2021 09:21:12 +0100 Subject: [PATCH] Define BeOS icon type if not previously defined, as it is missing in BeOS R3. --- setter/src/beos/xattr.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setter/src/beos/xattr.h b/setter/src/beos/xattr.h index 82ba1ac..0f0c5fb 100644 --- a/setter/src/beos/xattr.h +++ b/setter/src/beos/xattr.h @@ -98,4 +98,8 @@ unsigned char iconAttribute[1024] = { 0x10, 0x12, 0x15, 0x19, 0x1B, 0x1D, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; +#ifndef B_LARGE_ICON_TYPE +#define B_LARGE_ICON_TYPE 'ICON' +#endif + #endif // AARU_FSTESTER_SETTER_SRC_BEOS_XATTR_H_