internal.h 299 B

12345678910
  1. #ifndef _TOOLKIT_INTERNAL_H_
  2. #define _TOOLKIT_INTERNAL_H_
  3. int toolkit__convert_utf16_to_utf8(const WCHAR* utf16, int utf16len, char** utf8);
  4. int toolkit__convert_utf8_to_utf16(const char* utf8, int utf8len, WCHAR** utf16);
  5. uint64_t toolkit__hrtime(double scale);
  6. #endif /*_TOOLKIT_INTERNAL_H_*/