RagePhotoData: make it clear that RagePhotoData is a C type struct

This commit is contained in:
Syping 2023-01-11 18:45:35 +01:00
parent 1173db1aa8
commit 8e73219549
1 changed files with 8 additions and 0 deletions

View File

@ -21,6 +21,10 @@
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
typedef struct RagePhotoData {
char* jpeg;
char* description;
@ -43,4 +47,8 @@ typedef struct RagePhotoData {
uint32_t unnamedSum2;
} RagePhotoData;
#ifdef __cplusplus
}
#endif // __cplusplus
#endif // RAGEPHOTODATA_H