aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakamichi Horikawa <takamichiho@gmail.com>2017-09-08 23:23:59 +0900
committerTakamichi Horikawa <takamichiho@gmail.com>2017-09-08 23:23:59 +0900
commite2e3518bb6dca73d6c1b9bd80c03bbfd50d1811f (patch)
tree45b0d3e286b1540f38f249fc9549b617922e49cd
parentbee86e7dacdc2fffd80618be74c00acb457664c7 (diff)
common: win32: use explicit UTF-16 (FooW) functions
-rw-r--r--common/fmplayer_drumrom_win.c13
-rw-r--r--common/fmplayer_file_win.c37
2 files changed, 40 insertions, 10 deletions
diff --git a/common/fmplayer_drumrom_win.c b/common/fmplayer_drumrom_win.c
index aab4546..c3c4e36 100644
--- a/common/fmplayer_drumrom_win.c
+++ b/common/fmplayer_drumrom_win.c
@@ -3,6 +3,7 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <shlwapi.h>
+#include <wchar.h>
static struct {
char drum_rom[OPNA_ROM_SIZE];
bool loaded;
@@ -11,15 +12,15 @@ static struct {
static void loadrom(void) {
const wchar_t *path = L"ym2608_adpcm_rom.bin";
wchar_t exepath[MAX_PATH];
- if (GetModuleFileName(0, exepath, MAX_PATH)) {
- PathRemoveFileSpec(exepath);
- if ((lstrlen(exepath) + lstrlen(path) + 1) < MAX_PATH) {
- lstrcat(exepath, L"\\");
- lstrcat(exepath, path);
+ if (GetModuleFileNameW(0, exepath, MAX_PATH)) {
+ PathRemoveFileSpecW(exepath);
+ if ((wcslen(exepath) + wcslen(path) + 1) < MAX_PATH) {
+ wcscat(exepath, L"\\");
+ wcscat(exepath, path);
path = exepath;
}
}
- HANDLE file = CreateFile(path, GENERIC_READ,
+ HANDLE file = CreateFileW(path, GENERIC_READ,
0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
if (file == INVALID_HANDLE_VALUE) goto err;
DWORD filesize = GetFileSize(file, 0);
diff --git a/common/fmplayer_file_win.c b/common/fmplayer_file_win.c
index 2910953..5ca57dc 100644
--- a/common/fmplayer_file_win.c
+++ b/common/fmplayer_file_win.c
@@ -5,12 +5,16 @@
#include <stdlib.h>
#include <wchar.h>
+#if !defined(FMPLAYER_FILE_WIN_UTF16) && !defined(FMPLAYER_FILE_WIN_UTF8)
+#error "specify path string format"
+#endif
+
static void *fileread(const wchar_t *path,
size_t maxsize, size_t *filesize,
enum fmplayer_file_error *error) {
HANDLE file = INVALID_HANDLE_VALUE;
void *buf = 0;
- file = CreateFile(path, GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
+ file = CreateFileW(path, GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
if (file == INVALID_HANDLE_VALUE) {
if (error) *error = FMPLAYER_FILE_ERR_NOTFOUND;
goto err;
@@ -43,9 +47,27 @@ err:
return 0;
}
+static inline wchar_t *u8tou16(const char *s) {
+ wchar_t *ws = 0;
+ int slen = MultiByteToWideChar(CP_UTF8, 0, s, -1, 0, 0);
+ if (!slen) goto err;
+ ws = malloc(slen * sizeof(wchar_t));
+ if (!ws) goto err;
+ if (!MultiByteToWideChar(CP_UTF8, 0, s, -1, ws, slen)) goto err;
+ return ws;
+err:
+ free(ws);
+ return 0;
+}
+
void *fmplayer_fileread(const void *pathptr, const char *pcmname, const char *extension,
size_t maxsize, size_t *filesize, enum fmplayer_file_error *error) {
- const wchar_t *path = (const wchar_t *)pathptr;
+ const wchar_t *path = 0;
+#if defined(FMPLAYER_FILE_WIN_UTF16)
+ path = wcsdup(pathptr);
+#elif defined(FMPLAYER_FILE_WIN_UTF8)
+ path = u8tou16(pathptr);
+#endif
wchar_t *wpcmpath = 0, *wpcmname = 0, *wpcmextname = 0;
if (!pcmname) return fileread(path, maxsize, filesize, error);
int wpcmnamelen = MultiByteToWideChar(932, 0, pcmname, -1, 0, 0);
@@ -66,22 +88,29 @@ void *fmplayer_fileread(const void *pathptr, const char *pcmname, const char *ex
wpcmpath = malloc((wcslen(path) + 1 + wcslen(wpcmname) + 1) * sizeof(wchar_t));
if (!wpcmpath) goto err;
wcscpy(wpcmpath, path);
- PathRemoveFileSpec(wpcmpath);
+ PathRemoveFileSpecW(wpcmpath);
wcscat(wpcmpath, L"\\");
wcscat(wpcmpath, wpcmname);
void *buf = fileread(wpcmpath, maxsize, filesize, error);
free(wpcmextname);
free(wpcmname);
free(wpcmpath);
+ free((void *)path);
return buf;
err:
free(wpcmextname);
free(wpcmname);
free(wpcmpath);
+ free((void *)path);
return 0;
}
void *fmplayer_path_dup(const void *pathptr) {
- const wchar_t *path = (const wchar_t *)pathptr;
+#if defined(FMPLAYER_FILE_WIN_UTF16)
+ const wchar_t *path = pathptr;
return wcsdup(path);
+#elif defined(FMPLAYER_FILE_WIN_UTF8)
+ const char *path = pathptr;
+ return strdup(path);
+#endif
}