-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Rust]C++ Windows向けのexampleを修正します (#208)
* rustのAPIに追従するように変更 * README.md修正 * GetOpenJTalkDictの戻り値をUTF-8に変更。 wide_to_multi_capi関数が不要になったので削除。 Co-authored-by: shigobu <[email protected]> Co-authored-by: kasamatsu <[email protected]>
- Loading branch information
1 parent
411a82e
commit 6570c0d
Showing
6 changed files
with
45 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
#pragma once | ||
#include <iostream> | ||
#include "core.h" | ||
|
||
std::string GetOpenJTalkDict(); | ||
std::wstring GetWaveFileName(); | ||
std::wstring GetExePath(); | ||
std::wstring GetExeDirectory(); | ||
std::string wide_to_multi_capi(std::wstring const& src); | ||
std::string wide_to_utf8_cppapi(std::wstring const& src); | ||
void OutErrorMessage(VoicevoxResultCode messageCode); | ||
std::string wide_to_utf8_cppapi(std::wstring const& src); | ||
std::wstring utf8_to_wide_cppapi(std::string const& src); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters