Platform SDK: Registry |
The GetPrivateProfileSection function retrieves all the keys and values for the specified section of an initialization file.
Windows 95: The specified profile section must not exceed 32K.
Windows NT/2000: The specified profile section has no size limit.
Note This function is provided only for compatibility with 16-bit applications written for Windows. Win32-based applications should store initialization information in the registry.
DWORD GetPrivateProfileSection( LPCTSTR lpAppName, // section name LPTSTR lpReturnedString, // return buffer DWORD nSize, // size of return buffer LPCTSTR lpFileName // initialization file name );
Windows 95: The maximum buffer size is 32,767 characters.
The return value specifies the number of characters copied to the buffer, not including the terminating null character. If the buffer is not large enough to contain all the key name and value pairs associated with the named section, the return value is equal to nSize minus two.
The data in the buffer pointed to by the lpReturnedString parameter consists of one or more null-terminated strings, followed by a final null character. Each string has the following format:
key=string
The GetPrivateProfileSection function is not case-sensitive; the string pointed to by the lpAppName parameter can be a combination of uppercase and lowercase letters.
This operation is atomic; no updates to the specified initialization file are allowed while the key name and value pairs for the section are being copied to the buffer pointed to by the lpReturnedString parameter.
Windows NT/2000: Calls to private profile functions may be mapped to the registry instead of to the specified initialization files. This mapping occurs when the initialization file and section are specified in the registry under the following keys:
HKEY_LOCAL_MACHINE\Software\Microsoft\
Windows NT\CurrentVersion\IniFileMapping
This mapping is likely if an application modifies system-component initialization files, such as Control.ini, System.ini, and Winfile.ini. In these cases, the GetPrivateProfileSection function retrieves information from the registry, not from the initialization file; the change in the storage location has no effect on the function's behavior.
The Win32 profile functions (Get/WriteProfile*, Get/WritePrivateProfile*) use the following steps to locate initialization information:
HKEY_LOCAL_MACHINE\Software\Microsoft\
Windows NT\CurrentVersion\IniFileMapping\myfile.ini
When looking at values in the registry that specify other registry locations, there are several prefixes that change the behavior of the .ini file mapping:
Windows NT/2000: Comments (any line that starts with a semicolon) are stripped out and not returned in the lpReturnedString buffer.
Windows 95/98: The lpReturnedString buffer receives a copy of the entire section, including comments.
Windows NT/2000: Requires Windows NT 3.1 or later.
Windows 95/98: Requires Windows 95 or later.
Header: Declared in Winbase.h; include Windows.h.
Library: Use Kernel32.lib.
Unicode: Implemented as Unicode and ANSI versions on Windows NT/2000.
Registry Overview, Registry Functions, GetProfileSection, WritePrivateProfileSection