From 07406a5af9d23ffd408dc860b002df6ec292c8e1 Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Wed, 7 Nov 2012 18:09:37 +0100 Subject: [PATCH] FFI: Mention __thiscall attribute in docs. --- doc/ext_ffi_semantics.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/ext_ffi_semantics.html b/doc/ext_ffi_semantics.html index ab02f2b8..c2107663 100644 --- a/doc/ext_ffi_semantics.html +++ b/doc/ext_ffi_semantics.html @@ -148,7 +148,7 @@ VLA).
  • GCC __attribute__ with the following attributes: aligned, packed, mode, vector_size, cdecl, fastcall, -stdcall.
  • +stdcall, thiscall.
  • The GCC __extension__ keyword and the GCC __alignof__ operator.
  • @@ -160,8 +160,8 @@ function declarations. __int16, __int32 and __int64.
  • MSVC __cdecl, __fastcall, __stdcall, -__ptr32, __ptr64, __declspec(align(n)) -and #pragma pack.
  • +__thiscall, __ptr32, __ptr64, +__declspec(align(n)) and #pragma pack.
  • All other GCC/MSVC-specific attributes are ignored.
  • -- 2.11.4.GIT