Misc: Remove __fastcall, __fc, __concall and friends

These have no meaning in x64 (apart from throwing compiler warnings),
and we don't do 32-bit anymore. Also saves needing to include
`Pcsx2Defs.h` in files which don't otherwise need it.
This commit is contained in:
Connor McLaughlin
2022-05-12 14:58:03 +01:00
committed by refractionpcsx2
parent 6d85399ec5
commit d535331b4b
64 changed files with 712 additions and 715 deletions
+2 -2
View File
@@ -50,8 +50,8 @@
// aligned_malloc: Implement/declare linux equivalents here!
#if !defined(_MSC_VER)
extern void* __fastcall _aligned_malloc(size_t size, size_t align);
extern void* __fastcall pcsx2_aligned_realloc(void* handle, size_t new_size, size_t align, size_t old_size);
extern void* _aligned_malloc(size_t size, size_t align);
extern void* pcsx2_aligned_realloc(void* handle, size_t new_size, size_t align, size_t old_size);
extern void _aligned_free(void* pmem);
#else
#define pcsx2_aligned_realloc(handle, new_size, align, old_size) \