mirror of
https://github.com/0ldsk00l/smsplus.git
synced 2025-04-02 10:32:07 -04:00
45 lines
798 B
C
45 lines
798 B
C
#ifndef _SHARED_H_
|
|
#define _SHARED_H_
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <signal.h>
|
|
#include <malloc.h>
|
|
#include <math.h>
|
|
#include <limits.h>
|
|
#include <zlib.h>
|
|
|
|
#ifndef PATH_MAX
|
|
#ifdef MAX_PATH
|
|
#define PATH_MAX MAX_PATH
|
|
#else
|
|
#define PATH_MAX 1024
|
|
#endif
|
|
#endif
|
|
|
|
#include "types.h"
|
|
#include "macros.h"
|
|
#include "z80.h"
|
|
#include "sms.h"
|
|
#include "pio.h"
|
|
#include "memz80.h"
|
|
#include "vdp.h"
|
|
#include "render.h"
|
|
#include "tms.h"
|
|
#include "sn76489.h"
|
|
#include "emu2413.h"
|
|
#include "ym2413.h"
|
|
#include "fmintf.h"
|
|
#include "stream.h"
|
|
#include "sound.h"
|
|
#include "system.h"
|
|
#include "error.h"
|
|
|
|
#include "state.h"
|
|
#include "fileio.h"
|
|
#include "loadrom.h"
|
|
#include "unzip.h"
|
|
|
|
#endif /* _SHARED_H_ */
|