admin
2020-06-22 924bdf1c9fb74babf2438d5545db3594756625d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>DllExport</name>
    </assembly>
    <members>
        <member name="T:D3F00FF1770DED978EC774BA389F2DC9.DllExportAttribute">
            <summary>
            To export this as __cdecl C-exported function. Named as current method where is used attribute.
            [.NET DllExport]
            
            About our meta-information in user-code:
            https://github.com/3F/DllExport/issues/16
            </summary>
        </member>
        <member name="P:D3F00FF1770DED978EC774BA389F2DC9.DllExportAttribute.CallingConvention">
            <summary>
            Specified calling convention.
            
            __cdecl is the default convention in .NET DllExport like for other C/C++ programs (Microsoft Specific).
            __stdCall mostly used with winapi.
            
            https://msdn.microsoft.com/en-us/library/zkwh89ks.aspx
            https://msdn.microsoft.com/en-us/library/56h2zst2.aspx
            https://github.com/3F/Conari also uses __cdecl by default
            </summary>
        </member>
        <member name="P:D3F00FF1770DED978EC774BA389F2DC9.DllExportAttribute.ExportName">
            <summary>
            Optional name for C-exported function.
            </summary>
        </member>
        <member name="M:D3F00FF1770DED978EC774BA389F2DC9.DllExportAttribute.#ctor(System.String,System.Runtime.InteropServices.CallingConvention)">
            <param name="function">Optional name for C-exported function.</param>
            <param name="convention">Specified calling convention. __cdecl is the default convention in .NET DllExport.</param>
        </member>
        <member name="M:D3F00FF1770DED978EC774BA389F2DC9.DllExportAttribute.#ctor(System.String)">
            <param name="function">Optional name for C-exported function.</param>
        </member>
        <member name="M:D3F00FF1770DED978EC774BA389F2DC9.DllExportAttribute.#ctor(System.Runtime.InteropServices.CallingConvention)">
            <param name="convention">Specified calling convention. __cdecl is the default convention in .NET DllExport.</param>
        </member>
        <member name="M:D3F00FF1770DED978EC774BA389F2DC9.DllExportAttribute.#ctor">
            <summary>
            To export this as __cdecl C-exported function. Named as current method where is used attribute.
            </summary>
        </member>
    </members>
</doc>