123456789101112131415161718192021 |
- #ifndef _TOOLKIT_INTERNAL_H_
- #define _TOOLKIT_INTERNAL_H_
- #include "winapi.h"
- #include <stdint.h>
- int toolkit__convert_utf16_to_utf8(const WCHAR* utf16, int utf16len, char** utf8);
- int toolkit__convert_utf8_to_utf16(const char* utf8, int utf8len, WCHAR** utf16);
- void toolkit__once_init(void);
- uint64_t toolkit__hrtime(double scale);
- void toolkit_fatal_error(const int errorno, const char* syscall);
- /*
- * Winapi and ntapi utility functions
- */
- void toolkit_winapi_init(void);
- #endif /*_TOOLKIT_INTERNAL_H_*/
|