mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-14 21:09:05 +08:00
+ fix: SimpleIni: section iterator callback type
This commit is contained in:
parent
63089273f5
commit
8fe018ce58
@ -99,7 +99,7 @@ extern "C" {
|
||||
|
||||
// IniFileIterateSection():
|
||||
//
|
||||
typedef void (*IterSectionFunc_t)(LPCWSTR key, LPCWSTR value);
|
||||
typedef void (CALLBACK* IterSectionFunc_t)(LPCWSTR key, LPCWSTR value);
|
||||
BOOL IniFileIterateSection(LPCWSTR lpFilePath, LPCWSTR lpSectionName, IterSectionFunc_t callBack);
|
||||
|
||||
|
||||
|
||||
@ -105,7 +105,7 @@ bool IniFileDelete(LPCWSTR lpFilePath, LPCWSTR lpSectionName, LPCWSTR lpKeyName,
|
||||
|
||||
// IniFileIterateSection():
|
||||
//
|
||||
typedef void (*IterSectionFunc_t)(LPCWSTR key, LPCWSTR value);
|
||||
typedef void (CALLBACK* IterSectionFunc_t)(LPCWSTR key, LPCWSTR value);
|
||||
bool IniFileIterateSection(LPCWSTR lpFilePath, LPCWSTR lpSectionName, IterSectionFunc_t callBack);
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user