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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xs
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-12-21 22:11:19 +0300
committerbubnikv <bubnikv@gmail.com>2017-12-21 22:11:19 +0300
commit48ba7e5f73d07725ca49585f33fa86893a905448 (patch)
tree879f62e6c451a3122939978d4c29401b81c9ff11 /xs
parente71b021b6e7c4d90bf1824d73935a8bc04f1e6e4 (diff)
Removed dependency on Perl Encode::encode_utf8.
Diffstat (limited to 'xs')
-rw-r--r--xs/xsp/XS.xsp7
1 files changed, 7 insertions, 0 deletions
diff --git a/xs/xsp/XS.xsp b/xs/xsp/XS.xsp
index e0f6ab18b..e31570ca7 100644
--- a/xs/xsp/XS.xsp
+++ b/xs/xsp/XS.xsp
@@ -119,6 +119,13 @@ path_to_filename(src)
RETVAL = Slic3r::PerlUtils::path_to_filename(src);
OUTPUT: RETVAL
+local_encoded_string
+path_to_filename_raw(src)
+ const char *src;
+ CODE:
+ RETVAL = Slic3r::PerlUtils::path_to_filename(src);
+ OUTPUT: RETVAL
+
std::string
path_to_stem(src)
const char *src;