WiiFlow_Lite/source/libwbfs/libwbfs_os.h
fix94.1 6b663fe2d9 -completely new memory manager which should be faster and safer than the old one
-only use the internal wii aes hardware if we do have hardware access (should fix dolphin-emu and neek2o)
-(hopefully) made the gc installer and the wait message display safer
-code cleanup, removed some unneeded stuff
-increased our usable mem2 by 1mb
2013-12-21 17:02:36 +00:00

62 lines
1.0 KiB
C

#ifndef LIBWBFS_GLUE_H
#define LIBWBFS_GLUE_H
#include <gctypes.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <gccore.h>
#include <malloc.h>
#include "gecko/gecko.hpp"
#include "loader/disc.h"
#include "loader/utils.h"
#include "memory/mem2.hpp"
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
extern int wd_last_error;
static inline void wbfs_fatal(const char *x)
{
gprintf(x);
wd_last_error = 1;
}
static inline void wbfs_error(const char *x)
{
gprintf(x);
wd_last_error = 2;
}
static inline void *wbfs_malloc(size_t size)
{
void *p = MEM2_memalign(32, size);
if(p) memset(p, 0, size);
return p;
}
static inline void wbfs_free(void *ptr)
{
MEM2_free(ptr);
}
#ifdef __cplusplus
}
#endif /* __cplusplus */
#define wbfs_be16(x) (*((u16*)(x)))
#define wbfs_be32(x) (*((u32*)(x)))
#define wbfs_ntohl(x) (x)
#define wbfs_htonl(x) (x)
#define wbfs_ntohs(x) (x)
#define wbfs_htons(x) (x)
#define wbfs_memcmp(x,y,z) memcmp(x,y,z)
#define wbfs_memcpy(x,y,z) memcpy(x,y,z)
#define wbfs_memset(x,y,z) memset(x,y,z)
#endif