| 462 | } |
| 463 | |
| 464 | void __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 |