Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/simpleini.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrodie Thiesfield <brofield@gmail.com>2007-09-20 08:58:20 +0400
committerBrodie Thiesfield <brofield@gmail.com>2007-09-20 08:58:20 +0400
commita6a6f55fbe9b78e82827592fe5fca506a17833fb (patch)
tree102e81d9c1d6ebe4be2956bb040d0df760c18027 /SimpleIni.h
parentd19c3f6ee6c292e11690281d9527de5e90fa5738 (diff)
add test for wince
Diffstat (limited to 'SimpleIni.h')
-rw-r--r--SimpleIni.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/SimpleIni.h b/SimpleIni.h
index 73e7485..cec872b 100644
--- a/SimpleIni.h
+++ b/SimpleIni.h
@@ -1108,7 +1108,7 @@ CSimpleIniTempl<SI_CHAR,SI_STRLESS,SI_CONVERTER>::LoadFile(
{
#ifdef _WIN32
FILE * fp = NULL;
-#if __STDC_WANT_SECURE_LIB__
+#if __STDC_WANT_SECURE_LIB__ && !_WIN32_WCE
_wfopen_s(&fp, a_pwszFile, L"rb");
#else
fp = _wfopen(a_pwszFile, L"rb");