diff options
Diffstat (limited to 'plugins/NewStory/src/utils.h')
-rw-r--r-- | plugins/NewStory/src/utils.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/NewStory/src/utils.h b/plugins/NewStory/src/utils.h new file mode 100644 index 0000000000..f97af5a829 --- /dev/null +++ b/plugins/NewStory/src/utils.h @@ -0,0 +1,19 @@ +DWORD toggleBit(DWORD dw, DWORD bit); +bool CheckFilter(TCHAR *buf, TCHAR *filter); + +void CopyText(HWND hwnd, TCHAR *text); +void ExportHistory(HANDLE hContact, char *fnTemplate, char *fn, HWND hwndList); + +char *appendString(char *s1, char *s2); +WCHAR *appendString(WCHAR *s1, WCHAR *s2); +/* +#ifdef DEBUG + #define DebugInfo(x) +#else + #define DebugInfo(x) DebugInfo_func x + __forceinline void DebugInfo_func(const TCHAR *title, const TCHAR *fmt, ...) + { + PopUp + } +#endif +*/
\ No newline at end of file |