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

Function IniSetInt

src/Helpers.h:47–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45#define IniDeleteSection(lpSection) \
46 WritePrivateProfileSection(lpSection,NULL,szIniFile)
47__inline BOOL IniSetInt ( LPCWSTR lpSection, LPCWSTR lpName, int i )
48{
49 WCHAR tch[32];
50 wsprintf ( tch, L"%i", i );
51 return IniSetString ( lpSection, lpName, tch );
52}
53#define LoadIniSection(lpSection,lpBuf,cchBuf) \
54 GetPrivateProfileSection(lpSection,lpBuf,cchBuf,szIniFile);
55#define SaveIniSection(lpSection,lpBuf) \

Callers 3

InfoBoxDlgProcFunction · 0.85
MsgCommandFunction · 0.85
SaveSettingsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected