基本介紹
- 中文名:GetProfileSection
- 詞性:名詞
- 屬性:函式
- 註解:參考GetPrivateProfileInt函式
簡介,註解,
簡介
GetProfileSection
VB聲明
Declare Function GetProfileSection Lib "kernel32" Alias "GetProfileSectionA" (ByVal lpAppName As String, ByVal lpReturnedString As String, ByVal nSize As Long) As Long
說明
獲取指定小節(在win.ini檔案中)所有項名和值的一個列表
返回值
Long,裝載到lpReturnedString緩衝區的字元數量。如緩衝區的長度不足以容下所有信息,則返回nSize-2
參數表
參數 類型及說明
lpAppName String,欲獲取的小節。這個字串不區分大小寫
lpReturnedString String,用於容納項和值字串列表的一個緩衝區。每個字串都用一個NULL分隔,最後一個字串用兩個NULL字元中止
nSize Long,lpReturnedString緩衝區的大小,在windows 95中最大為32767
註解
參考GetPrivateProfileInt函式的註解