mirror of
https://github.com/gligli/nulldc-360.git
synced 2025-04-02 11:11:56 -04:00
27 lines
No EOL
479 B
C
27 lines
No EOL
479 B
C
#pragma once
|
|
//bleh stupid windoze header
|
|
#include "nullDC/types.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
typedef char TCHAR;
|
|
typedef string wstring;
|
|
typedef long long __int64;
|
|
|
|
#define BUILD 0
|
|
#define MINOR 0
|
|
#define MAJOR 1
|
|
extern emu_info emu;
|
|
extern char emu_name[512];
|
|
struct _setts
|
|
{
|
|
bool PatchRegion;
|
|
bool LoadDefaultImage;
|
|
char DefaultImage[512];
|
|
char LastImage[512];
|
|
};
|
|
|
|
extern _setts irsettings;
|
|
void SaveSettings(); |