RagePhotoData: make it clear that RagePhotoData is a C type struct
This commit is contained in:
parent
1173db1aa8
commit
8e73219549
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue