FFL
Loading...
Searching...
No Matches
FFLiAuthorID.h
Go to the documentation of this file.
1#ifndef FFLI_AUTHOR_ID_H_
2#define FFLI_AUTHOR_ID_H_
3
4#include <nn/ffl/types.h>
5
6#define FFLI_AUTHOR_ID_SIZE (sizeof(u64))
7
8typedef struct FFLiAuthorID
9{
10 union
11 {
14 };
15}
16FFLiAuthorID;
17NN_STATIC_ASSERT(sizeof(FFLiAuthorID) == FFLI_AUTHOR_ID_SIZE);
18
19BOOL FFLiIsSameAuthorID(const FFLiAuthorID* a, const FFLiAuthorID* b);
20BOOL FFLiIsHomeAuthorID(const FFLiAuthorID* pAuthorID);
21
22#endif // FFLI_AUTHOR_ID_H_
NN_STATIC_ASSERT(sizeof(FFLiAllocator)==4)
BOOL FFLiIsHomeAuthorID(const FFLiAuthorID *pAuthorID)
Definition FFLiAuthorID.cpp:24
#define FFLI_AUTHOR_ID_SIZE
Definition FFLiAuthorID.h:6
BOOL FFLiIsSameAuthorID(const FFLiAuthorID *a, const FFLiAuthorID *b)
Definition FFLiAuthorID.cpp:4
Definition FFLiAuthorID.h:9
u8 data[FFLI_AUTHOR_ID_SIZE]
Definition FFLiAuthorID.h:12
u16 value16[FFLI_AUTHOR_ID_SIZE/sizeof(u16)]
Definition FFLiAuthorID.h:13