mirror of
https://github.com/emu-russia/pureikyubu.git
synced 2025-04-02 10:42:15 -04:00
35 lines
827 B
C
35 lines
827 B
C
#pragma once
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// compiler and SDK include files.
|
|
|
|
#include <assert.h>
|
|
#include <stdint.h>
|
|
#include <direct.h>
|
|
#include <float.h>
|
|
#include <math.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <windows.h>
|
|
#include <commctrl.h>
|
|
#include <intrin.h>
|
|
#include <tchar.h>
|
|
#include "../../RES/resource.h"
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Dolwin includes
|
|
|
|
#include "../Common/Spinlock.h"
|
|
#include "../Common/Jdi.h"
|
|
#include "../Core/Gekko.h"
|
|
#include "../Core/Interpreter.h"
|
|
#include "../HighLevel/HighLevel.h"
|
|
#include "../Hardware/Hardware.h"
|
|
#include "../Debugger/Debugger.h"
|
|
#include "../UI/User.h"
|
|
|
|
#include "Loader.h"
|
|
#include "Emulator.h"
|