Remove Common/stdtypes.h
This commit is contained in:
parent
63a5b5c431
commit
62d2755300
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
#include <string>
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
enum UISettingID
|
||||
{
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
// Common controller plugin specification, version 1.1
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
enum { PLUGIN_TYPE_CONTROLLER = 4 };
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
// GNU/GPLv2 licensed: https://gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
#pragma once
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
#include "Rsp.h"
|
||||
#include "ucodes.h"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "Version.h"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "stdtypes.h"
|
||||
#include <stdint.h>
|
||||
|
||||
class CDateTime
|
||||
{
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
#include "stdtypes.h"
|
||||
#include <stdint.h>
|
||||
|
||||
class CFileBase
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "stdtypes.h"
|
||||
#include <stdint.h>
|
||||
|
||||
class HighResTimeStamp
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// This class implements the Lehmer Random Number Generator
|
||||
|
||||
#pragma once
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
class CRandom
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "stdtypes.h"
|
||||
#include <stdint.h>
|
||||
|
||||
class SyncEvent
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
class CThread
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "stdtypes.h"
|
||||
#include <stdint.h>
|
||||
|
||||
class pjutil
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
#include <string>
|
||||
#include "stdtypes.h"
|
||||
#include <stdint.h>
|
||||
|
||||
class CPath
|
||||
{
|
||||
|
|
|
@ -1,18 +0,0 @@
|
|||
#pragma once
|
||||
|
||||
// Some versions of Microsoft Visual C/++ compilers before Visual Studio 2010
|
||||
// have <stdint.h> removed in favor of these non-standard built-in types:
|
||||
|
||||
#if defined(_MSC_VER) && (_MSC_VER < 1600)
|
||||
typedef signed __int8 int8_t;
|
||||
typedef signed __int16 int16_t;
|
||||
typedef signed __int32 int32_t;
|
||||
typedef signed __int64 int64_t;
|
||||
|
||||
typedef unsigned __int8 uint8_t;
|
||||
typedef unsigned __int16 uint16_t;
|
||||
typedef unsigned __int32 uint32_t;
|
||||
typedef unsigned __int64 uint64_t;
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#endif
|
|
@ -11,7 +11,7 @@ the plugin.
|
|||
**********************************************************************************/
|
||||
#pragma once
|
||||
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
enum { PLUGIN_TYPE_AUDIO = 3 };
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "stdafx.h"
|
||||
#include <stdio.h>
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
#include <Common/path.h>
|
||||
|
||||
CLanguage * g_Lang = NULL;
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
#pragma warning(disable:4786)
|
||||
#include <string> //stl string
|
||||
#include <map> //stl map
|
||||
#include <list> //stl list
|
||||
#include <Common/stdtypes.h>
|
||||
#include <string>
|
||||
#include <map>
|
||||
#include <list>
|
||||
#include <stdint.h>
|
||||
|
||||
typedef std::map<int32_t, std::string, std::less<int32_t> > LANG_STRINGS;
|
||||
typedef LANG_STRINGS::value_type LANG_STR;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
// Based from MAME's N64DD driver code by Happy_
|
||||
#pragma once
|
||||
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
void DiskCommand(void);
|
||||
void DiskReset(void);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <stddef.h>
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
struct gb_cart
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <Project64-core/N64System/N64Types.h>
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
class CN64Disk
|
||||
{
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
/*
|
||||
* The limits of COP1 extend to native SSE2 register capabilities, but for
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include <Project64-core/Settings.h>
|
||||
#include <Common/StdString.h>
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
enum SettingType
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <Common/MemTest.h>
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
#include <Common/StdString.h>
|
||||
#include <Common/Trace.h>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
#include <guiddef.h>
|
||||
|
||||
enum BtnType
|
||||
|
|
|
@ -2,8 +2,7 @@
|
|||
Project64 Controller plugin spec, version #1.1
|
||||
**********************************************************************************/
|
||||
#pragma once
|
||||
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
enum { PLUGIN_TYPE_CONTROLLER = 4 };
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include "wtl-BitmapPicture.h"
|
||||
#include "wtl-ScanButton.h"
|
||||
#include "OptionsUI.h"
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
#include <Common/StdString.h>
|
||||
#include "resource.h"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
#include <string>
|
||||
#include "N64Controller.h"
|
||||
#include "ControllerSpec1.1.h"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
#include "ControllerSpec1.1.h"
|
||||
#include "N64Controller.h"
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#pragma once
|
||||
#include <Project64-video/Renderer/types.h>
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#define NO_OPTIONS 0x00000000
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
// Copyright(C) 2003-2009 Sergey 'Gonetz' Lipski
|
||||
// Copyright(C) 2002 Dave2001
|
||||
// GNU/GPLv2 licensed: https://gnu.org/licenses/gpl-2.0.html
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
typedef uint32_t uint32_t;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
// GNU/GPLv2 licensed: https://gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
#pragma once
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
typedef uint8_t gfxAlpha_t;
|
||||
typedef uint32_t gfxColor_t;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef ANDROID
|
||||
void UpdateScreenResolution(int ScreenWidth, int ScreenHeight);
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
// Copyright(C) 2003 Rice1964
|
||||
// GNU/GPLv2 licensed: https://gnu.org/licenses/gpl-2.0.html
|
||||
#pragma once
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#define NO_OPTIONS 0x00000000
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#define TAPIENTRY
|
||||
#endif
|
||||
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
typedef uint8_t uint8;
|
||||
typedef uint16_t uint16;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include <assert.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "types.h"
|
||||
#include "internal.h"
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
// GNU/GPLv2 licensed: https://gnu.org/licenses/gpl-2.0.html
|
||||
#pragma once
|
||||
|
||||
#include <Common/stdtypes.h>
|
||||
#include <Project64-video/Renderer/Renderer.h>
|
||||
#include <stdint.h>
|
||||
|
||||
extern char out_buf[2048];
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
#include <string>
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
enum UISettingID
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
#include <map>
|
||||
|
||||
class CBreakpoints :
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <Common/StdString.h>
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
#include "../Settings/Settings.h"
|
||||
|
||||
extern "C" {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
#include "Types.h"
|
||||
|
||||
#if defined(_WIN32)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef __Types_h
|
||||
#define __Types_h
|
||||
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
// Pointer to RSP operation code functions or "func"
|
||||
// This is the type of all RSP interpreter and recompiler functions
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "Rsp.h"
|
||||
#include "RSP Registers.h"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include <Settings/Settings.h>
|
||||
#include <Common/Platform.h>
|
||||
#include <Common/stdtypes.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue