Move types.h out of 3ds section.
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
|
||||
#include "cbmd.h"
|
||||
#include "lz11.h"
|
||||
#include "types.h"
|
||||
#include "util.h"
|
||||
|
||||
#endif
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef __CBMD_H__
|
||||
#define __CBMD_H__
|
||||
|
||||
#include "types.h"
|
||||
#include "../types.h"
|
||||
|
||||
typedef enum {
|
||||
CGFX_COMMON,
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef __LZ11_H__
|
||||
#define __LZ11_H__
|
||||
|
||||
#include "types.h"
|
||||
#include "../types.h"
|
||||
|
||||
u8* lz11_compress(u8* input, u32 inputSize, u32* size);
|
||||
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
#ifndef __TYPES_H__
|
||||
#define __TYPES_H__
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef uint8_t u8;
|
||||
typedef uint16_t u16;
|
||||
typedef uint32_t u32;
|
||||
typedef uint64_t u64;
|
||||
|
||||
#endif
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef __UTIL_H__
|
||||
#define __UTIL_H__
|
||||
|
||||
#include "types.h"
|
||||
#include "../types.h"
|
||||
|
||||
u8* image_to_tiles(const char* image, u32 width, u32 height, u32* size);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user