GetPrivateProfileSection

GetPrivateProfileSection,函式,獲取指定小節所有項名和值的一個列表。

基本介紹

  • 外文名:GetPrivateProfileSection
  • 欲獲取的小節:lpAppName String
  • 緩衝區:lpReturnedString String
  • 緩衝區的大小:nSize Long,lpReturnedString
簡介,註解,例子,

簡介

GetPrivateProfileSection
VB聲明
Declare Function GetPrivateProfileSection Lib "kernel32" Alias "GetPrivateProfileSectionA" (ByVal lpAppName As String, ByVal lpReturnedString As String, ByVal nSize As Long, ByVal lpFileName As String) As Long
返回值
Long,裝載到lpReturnedString緩衝區的字元數量。如緩衝區的容量不夠大,不能容下所有信息,就返回nSize-2
參數表
參數 類型及說明
lpAppName String,欲獲取的小節。注意這個字串不區分大小寫
lpReturnedString String,緩衝區
nSize Long,lpReturnedString緩衝區的大小。在windows系統中最大值為32767
lpFileName String,初始化檔案的名字。如沒有指定完整路徑名,windows就在Windows目錄中查找檔案

註解

參考對GetPrivateProfileInt函式的註解

例子

TCHAR buf[200];
::GetPrivateProfileSection(小節名,buf1,200,路徑);

相關詞條

熱門詞條

聯絡我們