| 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) \ |
no outgoing calls
no test coverage detected