mirror of
https://github.com/ARMSX2/ARMSX2.git
synced 2026-08-24 16:50:16 -07:00
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:
committed by
refractionpcsx2
parent
6d85399ec5
commit
d535331b4b
@@ -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) \
|
||||
|
||||
Reference in New Issue
Block a user