getprivateprofileint (kernel32)
Last changed: julmuri-85.157.160.49

.
Summary

C# Signature:

[DllImport("kernel32.dll")]
static extern uint GetPrivateProfileInt(string lpAppName, string lpKeyName,
   int nDefault, string lpFileName);

C++ Signature:

[DllImport("KERNEL32.DLL", CharSet=CharSet::Auto, EntryPoint="GetPrivateProfileInt")]
static UInt32 GetPrivateProfileInt(String^ lpAppName, String^ lpKeyName, Int32 nDefault, String^ lpFileName);

VB.Net Signature:

    <DllImport("kernel32.dll", SetLastError:=True, EntryPoint:="GetPrivateProfileIntA")> _
    Public Shared Function GetPrivateProfileInt( _
    ByVal lpApplicationName As String _
    , ByVal lpKeyName As String _
    , ByVal nDefault As Integer _
    , ByVal lpFileName As String _
    ) As Integer
    End Function

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

    Declare Function GetPrivateProfileInt Lib "kernel32.dll" _
     Alias "GetPrivateProfileIntA" (ByVal lpApplicationName _
     As String, ByVal lpKeyName As String, ByVal nDefault As _
     Integer, ByVal lpFileName As String) As Integer

Alternative Managed API:

Do you know one? Please contribute it!

Documentation