mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 08:49:03 +00:00
87681b8bc5
Will be base code for improvments
17 lines
200 B
C
17 lines
200 B
C
#ifndef _INFO_H_
|
|
#define _INFO_H_
|
|
|
|
#include "types.h"
|
|
#include "keyset.h"
|
|
|
|
typedef struct
|
|
{
|
|
FILE* file;
|
|
keyset* keys;
|
|
u32 offset;
|
|
const u8* blob;
|
|
u32 blobsize;
|
|
} infocontext;
|
|
|
|
#endif // _INFO_H_
|