DllImportAttribute.CallingConvention フィールド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
エントリ ポイントの呼び出し規約を示します。
public: System::Runtime::InteropServices::CallingConvention CallingConvention;
public System.Runtime.InteropServices.CallingConvention CallingConvention;
val mutable CallingConvention : System.Runtime.InteropServices.CallingConvention
Public CallingConvention As CallingConvention
フィールド値
例
場合によっては、Visual Basic 開発者は、 ステートメントのDeclare
代わりに を使用DllImportAttributeして、マネージド コードで DLL 関数を定義します。 フィールドの CallingConvention 設定は、その 1 つです。
using namespace System;
using namespace System::Runtime::InteropServices;
private ref class NativeMethods
{
// Managed class methods don't support varargs so all arguments must be
// explicitly defined. CallingConvention.Cdecl must be used since the
// stack is cleaned up by the caller.
// int printf(const char *format [, argument]...)
public:
[DllImport("msvcrt.dll", CharSet = CharSet::Ansi,
CallingConvention = CallingConvention::Cdecl)]
static int printf(String^ format, int i, double d);
[DllImport("msvcrt.dll", CharSet = CharSet::Ansi,
CallingConvention = CallingConvention::Cdecl)]
static int printf(String^ format, int i, String^ s);
};
void main()
{
NativeMethods::printf("\nPrint params: %i %f", 99, 99.99);
NativeMethods::printf("\nPrint params: %i %s", 99, "abcd");
}
using System;
using System.Runtime.InteropServices;
internal static class NativeMethods
{
// C# doesn't support varargs so all arguments must be explicitly defined.
// CallingConvention.Cdecl must be used since the stack is
// cleaned up by the caller.
// int printf(const char *format [, argument]...)
[DllImport("msvcrt.dll", CharSet = CharSet.Ansi,
CallingConvention = CallingConvention.Cdecl)]
internal static extern int printf(string format, int i, double d);
[DllImport("msvcrt.dll", CharSet = CharSet.Ansi,
CallingConvention = CallingConvention.Cdecl)]
internal static extern int printf(string format, int i, string s);
}
public class App
{
public static void Main()
{
NativeMethods.printf("\nPrint params: %i %f", 99, 99.99);
NativeMethods.printf("\nPrint params: %i %s", 99, "abcd");
}
}
Imports System.Runtime.InteropServices
Friend Class NativeMethods
' Visual Basic doesn't support varargs so all arguments must be explicitly defined.
' CallingConvention.Cdecl must be used since the stack is
' cleaned up by the caller.
' int printf(const char *format [, argument]...)
<DllImport("msvcrt.dll", CharSet:=CharSet.Ansi,
CallingConvention:=CallingConvention.Cdecl)>
Friend Shared Function printf(format As String, i As Integer, d As Double) As Integer
End Function
<DllImport("msvcrt.dll", CharSet:=CharSet.Ansi,
CallingConvention:=CallingConvention.Cdecl)>
Friend Shared Function printf(format As String, i As Integer, s As String) As Integer
End Function
End Class
Public Class App
Public Shared Sub Main()
NativeMethods.printf(vbCrLf + "Print params: %i %f", 99, 99.99)
NativeMethods.printf(vbCrLf + "Print params: %i %s", 99, "abcd")
End Sub
End Class
注釈
このフィールドを列挙メンバーのいずれかに設定します CallingConvention 。 フィールドのCallingConvention既定値は です。この既定値はWinapi、Windows およびCdecl他のすべてのプラットフォームで規則に設定StdCallされます。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET