StaticMysql.hx 349 B

1234567891011121314151617
  1. package cpp.link;
  2. @:cppFileCode( 'extern "C" int mysql_register_prims();')
  3. @:buildXml("
  4. <target id='haxe'>
  5. <lib name='${HXCPP}/lib/${BINDIR}/libmysql5${LIBEXTRA}${LIBEXT}'/>
  6. <lib name='ws2_32.lib' if='windows'/>
  7. </target>
  8. ")
  9. @:keep class StaticMysql
  10. {
  11. static function __init__()
  12. {
  13. untyped __cpp__("mysql_register_prims();");
  14. }
  15. }