FFI: Mention __thiscall attribute in docs.

This commit is contained in:
Mike Pall 2012-11-07 18:09:37 +01:00
parent 0613358991
commit 07406a5af9

View File

@ -148,7 +148,7 @@ VLA).</li>
<li>GCC <tt>__attribute__</tt> with the following attributes: <li>GCC <tt>__attribute__</tt> with the following attributes:
<tt>aligned</tt>, <tt>packed</tt>, <tt>mode</tt>, <tt>aligned</tt>, <tt>packed</tt>, <tt>mode</tt>,
<tt>vector_size</tt>, <tt>cdecl</tt>, <tt>fastcall</tt>, <tt>vector_size</tt>, <tt>cdecl</tt>, <tt>fastcall</tt>,
<tt>stdcall</tt>.</li> <tt>stdcall</tt>, <tt>thiscall</tt>.</li>
<li>The GCC <tt>__extension__</tt> keyword and the GCC <li>The GCC <tt>__extension__</tt> keyword and the GCC
<tt>__alignof__</tt> operator.</li> <tt>__alignof__</tt> operator.</li>
@ -160,8 +160,8 @@ function declarations.</li>
<tt>__int16</tt>, <tt>__int32</tt> and <tt>__int64</tt>.</li> <tt>__int16</tt>, <tt>__int32</tt> and <tt>__int64</tt>.</li>
<li>MSVC <tt>__cdecl</tt>, <tt>__fastcall</tt>, <tt>__stdcall</tt>, <li>MSVC <tt>__cdecl</tt>, <tt>__fastcall</tt>, <tt>__stdcall</tt>,
<tt>__ptr32</tt>, <tt>__ptr64</tt>, <tt>__declspec(align(n))</tt> <tt>__thiscall</tt>, <tt>__ptr32</tt>, <tt>__ptr64</tt>,
and <tt>#pragma&nbsp;pack</tt>.</li> <tt>__declspec(align(n))</tt> and <tt>#pragma&nbsp;pack</tt>.</li>
<li>All other GCC/MSVC-specific attributes are ignored.</li> <li>All other GCC/MSVC-specific attributes are ignored.</li>