diff options
author | George Hazan <george.hazan@gmail.com> | 2013-08-10 16:26:46 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-08-10 16:26:46 +0000 |
commit | c4a4d10f023ced1fdab492f1b92d0aa0a39ebc3b (patch) | |
tree | d6761e915e20477e99a6f96f72d43f8f335f2693 /plugins/Msg_Export/src/utils.h | |
parent | 6881b6b3e2dec0c4675b4c0b2bf6aff29fa860ed (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@5635 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Msg_Export/src/utils.h')
-rwxr-xr-x | plugins/Msg_Export/src/utils.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/plugins/Msg_Export/src/utils.h b/plugins/Msg_Export/src/utils.h index 6264ad2a62..276f85c8be 100755 --- a/plugins/Msg_Export/src/utils.h +++ b/plugins/Msg_Export/src/utils.h @@ -51,7 +51,7 @@ tstring sGetErrorString(DWORD dwError); tstring sGetErrorString();
void DisplayLastError(const TCHAR *pszError);
-TCHAR *CheckedTranslate( const TCHAR *szEng, int nFormatCount = -1 );
+TCHAR *CheckedTranslate( const TCHAR *szEng, int nFormatCount = -1);
void SaveSettings();
void ShowDebugInfo();
@@ -61,8 +61,8 @@ int nContactDeleted(WPARAM wparam,LPARAM lparam); const TCHAR *NickFromHandle(HANDLE hContact);
-tstring __inline _DBGetStringW(HANDLE hContact,const char *szModule,const char *szSetting, const TCHAR *pszError );
-string __inline _DBGetStringA(HANDLE hContact,const char *szModule,const char *szSetting, const char *pszError );
+tstring __inline _DBGetStringW(HANDLE hContact,const char *szModule,const char *szSetting, const TCHAR *pszError);
+string __inline _DBGetStringA(HANDLE hContact,const char *szModule,const char *szSetting, const char *pszError);
void ReplaceAll( tstring &sSrc, const TCHAR *pszReplace, const tstring &sNew);
void ReplaceAll( tstring &sSrc, const TCHAR *pszReplace, const TCHAR *pszNew);
@@ -70,16 +70,16 @@ void ReplaceAll( tstring &sSrc, const TCHAR *pszReplace, const TCHAR *pszNew); void UpdateFileToColWidth();
bool bReadMirandaDirAndPath();
-tstring GetFilePathFromUser( HANDLE hContact );
+tstring GetFilePathFromUser( HANDLE hContact);
-void ReplaceDefines( HANDLE hContact, tstring & sTarget );
-void ReplaceTimeVariables( tstring &sRet );
+void ReplaceDefines( HANDLE hContact, tstring & sTarget);
+void ReplaceTimeVariables( tstring &sRet);
-bool bCreatePathToFile( tstring sFilePath );
+bool bCreatePathToFile( tstring sFilePath);
-bool bWriteIndentedToFile( HANDLE hFile, int nIndent, const char *pszSrc, bool bUtf8File );
-bool bWriteIndentedToFile( HANDLE hFile, int nIndent, const TCHAR *pszSrc, bool bUtf8File );
-bool bWriteNewLine( HANDLE hFile, DWORD dwIndent );
-bool bIsUtf8Header( BYTE * pucByteOrder );
+bool bWriteIndentedToFile( HANDLE hFile, int nIndent, const char *pszSrc, bool bUtf8File);
+bool bWriteIndentedToFile( HANDLE hFile, int nIndent, const TCHAR *pszSrc, bool bUtf8File);
+bool bWriteNewLine( HANDLE hFile, DWORD dwIndent);
+bool bIsUtf8Header( BYTE * pucByteOrder);
#endif
|