aboutsummaryrefslogtreecommitdiff
path: root/c/common.h
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-07-16 01:53:49 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-07-16 01:53:49 +0200
commit2fed063bf167dcb8f900c4a1f11b0a02ae115d16 (patch)
tree99b41b649fb6a1b6683bd90cd38ab894dd526ce3 /c/common.h
parent84c3dd3587e219caa80adc2070f0e9fe004c27bc (diff)
downloadEpisodeBrowser-2fed063bf167dcb8f900c4a1f11b0a02ae115d16.tar.gz
Rewrite TszFromSz as TsmFromSz.
I.e. using std::basic_string<TCHAR> instead of TCHAR *. This removes all unmanaged frees.
Diffstat (limited to 'c/common.h')
-rw-r--r--c/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/common.h b/c/common.h
index a6bba23..738368f 100644
--- a/c/common.h
+++ b/c/common.h
@@ -6,7 +6,7 @@
#include <stdexcept>
#include <windows.h>
-TCHAR *TszFromSz(const char *, int);
+std::basic_string<TCHAR> TsmFromSz(const char *, int);
struct Win32Error : public std::exception
{
Win32Error(DWORD);