From 7a2d37f59874c389a0ba0fb8789f392e2f09b817 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joa=CC=83o=20Matos?= Date: Fri, 10 Jul 2015 16:51:18 +0100 Subject: [PATCH] Fixed test to properly use cross-platform stdcall attribute. --- tests/CSharpTemp/CSharpTemp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CSharpTemp/CSharpTemp.h b/tests/CSharpTemp/CSharpTemp.h index 127865e9..d657c6fd 100644 --- a/tests/CSharpTemp/CSharpTemp.h +++ b/tests/CSharpTemp/CSharpTemp.h @@ -11,7 +11,7 @@ public: int& operator[](int i); int A; int* (*functionPtrReturnsPtrParam)(); - int (__stdcall *attributedFunctionPtr)(); + int (STDCALL *attributedFunctionPtr)(); static const int rename = 5;