2012-05-12 18:03:14 +02:00
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
#ifndef LIBWBFS_GLUE_H
|
|
|
|
#define LIBWBFS_GLUE_H
|
|
|
|
|
|
|
|
#include <gctypes.h>
|
2012-05-12 18:03:14 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
#include "utils.h"
|
|
|
|
#include "mem2.hpp"
|
2012-05-12 18:03:14 +02:00
|
|
|
#include "gecko/gecko.h"
|
2012-01-21 21:57:41 +01:00
|
|
|
|
2012-05-12 18:03:14 +02:00
|
|
|
#define wbfs_fatal(x) do { gprintf(x); wd_last_error = 1; } while(0)
|
|
|
|
#define wbfs_error(x) do { gprintf(x); wd_last_error = 2; } while(0)
|
2012-01-21 21:57:41 +01:00
|
|
|
|
2012-06-07 02:34:47 +02:00
|
|
|
#define wbfs_malloc(x) MEM2_alloc(x)
|
|
|
|
#define wbfs_free(x) MEM2_free(x)
|
2012-01-21 21:57:41 +01:00
|
|
|
|
2012-06-07 02:34:47 +02:00
|
|
|
#define wbfs_ioalloc(x) MEM2_memalign(32, x)
|
|
|
|
#define wbfs_iofree(x) MEM2_free(x)
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
#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
|