From: Mike Pall Date: Wed, 7 Nov 2012 17:09:37 +0000 (+0100) Subject: FFI: Mention __thiscall attribute in docs. X-Git-Tag: v2.0.0-rc3~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07406a5af9d23ffd408dc860b002df6ec292c8e1;p=thirdparty%2FLuaJIT.git FFI: Mention __thiscall attribute in docs. --- 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.