MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / IniSectionSetInt

Function IniSectionSetInt

src/Helpers.h:60–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58int IniSectionGetInt ( LPCWSTR, LPCWSTR, int );
59BOOL IniSectionSetString ( LPWSTR, LPCWSTR, LPCWSTR );
60__inline BOOL IniSectionSetInt ( LPWSTR lpCachedIniSection, LPCWSTR lpName, int i )
61{
62 WCHAR tch[32];
63 wsprintf ( tch, L"%i", i );
64 return IniSectionSetString ( lpCachedIniSection, lpName, tch );
65}
66
67
68extern HWND hwndEdit;

Callers 2

Style_SaveFunction · 0.85
SaveSettingsFunction · 0.85

Calls 1

IniSectionSetStringFunction · 0.85

Tested by

no test coverage detected