2013-12-25 21:40:33 -08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013 Hugh Bailey <obs.jim@gmail.com>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
2013-09-30 19:37:13 -07:00
|
|
|
|
2013-10-14 04:21:15 -07:00
|
|
|
#pragma once
|
2013-09-30 19:37:13 -07:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <wchar.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include "c99defs.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Platform-independent functions for Accessing files, encoding, DLLs,
|
|
|
|
* sleep, timer, and timing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
EXPORT FILE *os_wfopen(const wchar_t *path, const char *mode);
|
|
|
|
EXPORT FILE *os_fopen(const char *path, const char *mode);
|
|
|
|
EXPORT off_t os_fgetsize(FILE *file);
|
|
|
|
|
|
|
|
EXPORT size_t os_fread_mbs(FILE *file, char **pstr);
|
|
|
|
EXPORT size_t os_fread_utf8(FILE *file, char **pstr);
|
|
|
|
|
|
|
|
/* functions purely for convenience */
|
|
|
|
EXPORT char *os_quick_read_utf8_file(const char *path);
|
|
|
|
EXPORT bool os_quick_write_utf8_file(const char *path, const char *str,
|
|
|
|
size_t len, bool marker);
|
2013-10-17 17:21:42 -07:00
|
|
|
EXPORT char *os_quick_read_mbs_file(const char *path);
|
|
|
|
EXPORT bool os_quick_write_mbs_file(const char *path, const char *str,
|
|
|
|
size_t len);
|
2013-09-30 19:37:13 -07:00
|
|
|
|
|
|
|
EXPORT size_t os_mbs_to_wcs(const char *str, size_t len, wchar_t **pstr);
|
|
|
|
EXPORT size_t os_utf8_to_wcs(const char *str, size_t len, wchar_t **pstr);
|
|
|
|
EXPORT size_t os_wcs_to_mbs(const wchar_t *str, size_t len, char **pstr);
|
|
|
|
EXPORT size_t os_wcs_to_utf8(const wchar_t *str, size_t len, char **pstr);
|
|
|
|
|
|
|
|
EXPORT size_t os_utf8_to_mbs(const char *str, size_t len, char **pstr);
|
|
|
|
EXPORT size_t os_mbs_to_utf8(const char *str, size_t len, char **pstr);
|
|
|
|
|
|
|
|
EXPORT void *os_dlopen(const char *path);
|
|
|
|
EXPORT void *os_dlsym(void *module, const char *func);
|
|
|
|
EXPORT void os_dlclose(void *module);
|
|
|
|
|
|
|
|
EXPORT void os_sleepto_ns(uint64_t time_target);
|
|
|
|
EXPORT void os_sleep_ms(uint32_t duration);
|
|
|
|
|
|
|
|
EXPORT uint64_t os_gettime_ns(void);
|
|
|
|
|
2013-12-23 17:59:54 -08:00
|
|
|
EXPORT char *os_get_config_path(const char *name);
|
2013-11-01 14:33:00 -07:00
|
|
|
|
2013-12-12 20:41:46 -08:00
|
|
|
EXPORT bool os_file_exists(const char *path);
|
|
|
|
|
2013-11-23 22:35:03 -08:00
|
|
|
#define MKDIR_EXISTS 1
|
|
|
|
#define MKDIR_SUCCESS 0
|
|
|
|
#define MKDIR_ERROR -1
|
|
|
|
|
|
|
|
EXPORT int os_mkdir(const char *path);
|
|
|
|
|
2013-09-30 19:37:13 -07:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
EXPORT int fseeko(FILE *stream, off_t offset, int whence);
|
|
|
|
EXPORT off_t ftello(FILE *stream);
|
|
|
|
#define strtoll _strtoi64
|
2013-11-07 15:45:03 -08:00
|
|
|
#endif
|
2013-09-30 19:37:13 -07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|