MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / __hxcpp_push_dll_path

Function __hxcpp_push_dll_path

src/hx/Lib.cpp:464–473  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

462}
463
464void __hxcpp_push_dll_path(String inPath)
465{
466 int last = inPath.length-1;
467 int lastCode = (last>0) ? inPath.cca(last) : -1;
468
469 if ( lastCode!='\\' && lastCode!='/')
470 sgLibPath.push_back( (inPath + HX_CSTRING("/")).makePermanent() );
471 else
472 sgLibPath.push_back( inPath.makePermanent() );
473}
474
475
476

Callers 1

Lib.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected