This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
Fix build against old wine
Signed-off-by: falkTX <falktx@falktx.com>
pull/1933/head
falkTX
1 month ago
parent
362f031960
commit
bbe949ccd8
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
1 changed files
with
7 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-2
source/includes/vestige/vestige.h
+ 7
- 2
source/includes/vestige/vestige.h
View File
@@ -30,11 +30,16 @@
* Boston, MA 02110-1301 USA.
*
*/
#include <stdint.h>
#ifndef _VESTIGE_H
#define _VESTIGE_H
#if ! (defined(WIN32) || defined(_WIN32) || defined(__WIN32__))
#include <stdint.h>
#if defined(__WINE__)
# undef __cdecl
# define __cdecl __attribute__((ms_abi))
#elif ! (defined(WIN32) || defined(_WIN32) || defined(__WIN32__))
# define __cdecl
#endif
Write
Preview
Loading…
Cancel
Save