summaryrefslogtreecommitdiff
path: root/src/win32/utf-conv.h
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2013-08-07 19:29:33 -0700
committerBen Straub <bs@github.com>2013-08-07 19:29:33 -0700
commit2c0128ee79243d32e60f19e60acc2e297c1761d6 (patch)
treed546dd7b80bfb1dbf415efd971f4e27d5a5ce88f /src/win32/utf-conv.h
parent9c38f7a6523cdc87a897eccb6d83439987f99a4e (diff)
downloadlibgit2-2c0128ee79243d32e60f19e60acc2e297c1761d6.tar.gz
Rename git_win_str_utf* to git_win32_path_utf*
Diffstat (limited to 'src/win32/utf-conv.h')
-rw-r--r--src/win32/utf-conv.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/win32/utf-conv.h b/src/win32/utf-conv.h
index d0b6fc825..4e602291e 100644
--- a/src/win32/utf-conv.h
+++ b/src/win32/utf-conv.h
@@ -13,11 +13,11 @@
#define GIT_WIN_PATH_UTF16 (260 + 1)
#define GIT_WIN_PATH_UTF8 (260 * 4 + 1)
-typedef wchar_t git_win_str_utf16[GIT_WIN_PATH_UTF16];
-typedef char git_win_str_utf8[GIT_WIN_PATH_UTF8];
+typedef wchar_t git_win32_path_utf16[GIT_WIN_PATH_UTF16];
+typedef char git_win32_path_utf8[GIT_WIN_PATH_UTF8];
-int git__utf8_to_16(git_win_str_utf16 dest, const git_win_str_utf8 src);
-int git__utf16_to_8(git_win_str_utf8 dest, const git_win_str_utf16 src);
+int git__utf8_to_16(git_win32_path_utf16 dest, const git_win32_path_utf8 src);
+int git__utf16_to_8(git_win32_path_utf8 dest, const git_win32_path_utf16 src);
#endif