diff options
author | Takuji Tanaka <KXD02663@nifty.ne.jp> | 2013-12-31 00:52:54 +0000 |
---|---|---|
committer | Takuji Tanaka <KXD02663@nifty.ne.jp> | 2013-12-31 00:52:54 +0000 |
commit | 1aae882b478be67d401b4d94e2c7b607dd23f10e (patch) | |
tree | f2ed9f77c21d7e770dc8f1b6360566768ec40764 /Build/source/texk/kpathsea/knj.h | |
parent | bd344bcd4173e2f20b56a41f894f0354d05ddc4d (diff) |
bug fix about error check when fopen (Windows only)
git-svn-id: svn://tug.org/texlive/trunk@32519 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/knj.h')
-rw-r--r-- | Build/source/texk/kpathsea/knj.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Build/source/texk/kpathsea/knj.h b/Build/source/texk/kpathsea/knj.h index 0629213a309..00db79c5e24 100644 --- a/Build/source/texk/kpathsea/knj.h +++ b/Build/source/texk/kpathsea/knj.h @@ -19,6 +19,9 @@ #ifndef KPATHSEA_KNJ_H #define KPATHSEA_KNJ_H +#include <kpathsea/c-proto.h> +#include <kpathsea/types.h> + #ifdef __cplusplus extern "C" { #endif @@ -32,6 +35,8 @@ extern KPSEDLL int isknj2(int c); extern KPSEDLL wchar_t* get_wstring_from_mbstring(int cp, const char *mbstr, wchar_t *wstr); extern KPSEDLL char* get_mbstring_from_wstring(int cp, const wchar_t *wstr, char *mbstr); extern KPSEDLL FILE* fsyscp_xfopen(const char *filename, const char *mode); +extern KPSEDLL FILE* fsyscp_fopen(const char *filename, const char *mode); +extern KPSEDLL void get_command_line_args_utf8(const_string enc, int *p_ac, string **p_av); #ifdef __cplusplus } |