2019-10-24 14:51:22 +03:00
|
|
|
module builtin
|
2020-04-07 04:27:06 +03:00
|
|
|
|
2022-04-29 04:31:51 +03:00
|
|
|
// struct C.FILE {}
|
|
|
|
|
2019-10-26 11:14:16 +03:00
|
|
|
// <string.h>
|
2021-09-08 13:09:32 +03:00
|
|
|
fn C.memcpy(dest voidptr, const_src voidptr, n usize) voidptr
|
2019-10-26 11:14:16 +03:00
|
|
|
|
2021-09-08 13:09:32 +03:00
|
|
|
fn C.memcmp(const_s1 voidptr, const_s2 voidptr, n usize) int
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2021-09-08 13:09:32 +03:00
|
|
|
fn C.memmove(dest voidptr, const_src voidptr, n usize) voidptr
|
2021-08-12 21:46:38 +03:00
|
|
|
|
2021-09-08 13:09:32 +03:00
|
|
|
fn C.memset(str voidptr, c int, n usize) voidptr
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2021-02-14 21:37:32 +03:00
|
|
|
[trusted]
|
2022-04-28 11:30:36 +03:00
|
|
|
fn C.calloc(int, int) &u8
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2022-04-29 04:31:51 +03:00
|
|
|
fn C.atoi(&char) int
|
|
|
|
|
2022-04-28 11:30:36 +03:00
|
|
|
fn C.malloc(int) &u8
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2022-04-28 11:30:36 +03:00
|
|
|
fn C.realloc(a &u8, b int) &u8
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2020-04-07 04:27:06 +03:00
|
|
|
fn C.free(ptr voidptr)
|
2019-10-24 15:41:29 +03:00
|
|
|
|
2021-07-05 05:05:37 +03:00
|
|
|
[noreturn; trusted]
|
2020-11-16 19:32:50 +03:00
|
|
|
fn C.exit(code int)
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-09-08 13:09:32 +03:00
|
|
|
fn C.qsort(base voidptr, items usize, item_size usize, cb C.qsort_callback_func)
|
2019-10-24 15:41:29 +03:00
|
|
|
|
2020-02-04 11:54:15 +03:00
|
|
|
fn C.sprintf(a ...voidptr) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.strlen(s &char) int
|
2019-10-25 12:07:50 +03:00
|
|
|
|
2022-04-15 14:45:52 +03:00
|
|
|
fn C.sscanf(&u8, &u8, ...&u8) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-02-14 21:37:32 +03:00
|
|
|
[trusted]
|
|
|
|
fn C.isdigit(c int) bool
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2019-11-01 00:52:08 +03:00
|
|
|
// stdio.h
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.popen(c &char, t &char) voidptr
|
2020-03-22 16:47:43 +03:00
|
|
|
|
2019-10-26 01:55:16 +03:00
|
|
|
// <libproc.h>
|
2020-05-18 23:54:08 +03:00
|
|
|
pub fn proc_pidpath(int, voidptr, int) int
|
2019-10-26 01:55:16 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.realpath(&char, &char) &char
|
2019-11-15 01:07:38 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
// fn C.chmod(byteptr, mode_t) int
|
2021-04-05 22:13:53 +03:00
|
|
|
fn C.chmod(&char, u32) int
|
2019-10-24 15:41:29 +03:00
|
|
|
|
2021-04-05 22:13:53 +03:00
|
|
|
fn C.printf(&char, ...voidptr) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-05 22:13:53 +03:00
|
|
|
fn C.puts(&char) int
|
2022-04-20 13:03:22 +03:00
|
|
|
fn C.abs(f64) f64
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-05 22:13:53 +03:00
|
|
|
fn C.fputs(str &char, stream &C.FILE) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-01-30 20:33:36 +03:00
|
|
|
fn C.fflush(&C.FILE) int
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2019-11-24 06:27:02 +03:00
|
|
|
// TODO define args in these functions
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.fseek(stream &C.FILE, offset int, whence int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.fopen(filename &char, mode &char) &C.FILE
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-01-30 20:33:36 +03:00
|
|
|
fn C.fileno(&C.FILE) int
|
2020-05-19 13:38:06 +03:00
|
|
|
|
2021-09-08 13:09:32 +03:00
|
|
|
fn C.fread(ptr voidptr, item_size usize, items usize, stream &C.FILE) usize
|
2021-01-15 13:15:22 +03:00
|
|
|
|
2021-09-08 13:09:32 +03:00
|
|
|
fn C.fwrite(ptr voidptr, item_size usize, items usize, stream &C.FILE) usize
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.fclose(stream &C.FILE) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.pclose(stream &C.FILE) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-05-07 00:58:14 +03:00
|
|
|
fn C.strrchr(s &char, c int) &char
|
|
|
|
fn C.strchr(s &char, c int) &char
|
|
|
|
|
2020-11-16 19:32:50 +03:00
|
|
|
// process execution, os.process:
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2020-11-16 19:32:50 +03:00
|
|
|
fn C.getpid() int
|
|
|
|
|
2021-05-05 14:20:11 +03:00
|
|
|
fn C.getuid() int
|
|
|
|
|
|
|
|
fn C.geteuid() int
|
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.system(cmd &char) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.posix_spawn(child_pid &int, path &char, file_actions voidptr, attrp voidptr, argv &&char, envp &&char) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.posix_spawnp(child_pid &int, exefile &char, file_actions voidptr, attrp voidptr, argv &&char, envp &&char) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.execve(cmd_path &char, args voidptr, envs voidptr) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-05 21:39:32 +03:00
|
|
|
fn C.execvp(cmd_path &char, args &&char) int
|
2021-04-04 17:05:06 +03:00
|
|
|
|
2021-04-05 21:39:32 +03:00
|
|
|
fn C._execve(cmd_path &char, args voidptr, envs voidptr) int
|
2021-04-04 17:05:06 +03:00
|
|
|
|
2021-04-05 21:39:32 +03:00
|
|
|
fn C._execvp(cmd_path &char, args &&char) int
|
2021-04-04 17:05:06 +03:00
|
|
|
|
2022-05-04 06:49:45 +03:00
|
|
|
fn C.strcmp(s1 &char, s2 &char) int
|
|
|
|
|
2021-02-14 21:37:32 +03:00
|
|
|
[trusted]
|
2020-11-16 19:32:50 +03:00
|
|
|
fn C.fork() int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2020-11-16 19:32:50 +03:00
|
|
|
fn C.wait(status &int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2020-11-16 19:32:50 +03:00
|
|
|
fn C.waitpid(pid int, status &int, options int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2020-11-16 19:32:50 +03:00
|
|
|
fn C.kill(pid int, sig int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.setenv(&char, &char, int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.unsetenv(&char) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.access(path &char, amode int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.remove(filename &char) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.rmdir(path &char) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.chdir(path &char) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.rewind(stream &C.FILE) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-09-25 22:54:46 +03:00
|
|
|
fn C.ftell(&C.FILE) isize
|
2022-04-29 04:31:51 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.stat(&char, voidptr) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.lstat(path &char, buf &C.stat) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.rename(old_filename &char, new_filename &char) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.fgets(str &char, n int, stream &C.FILE) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2019-11-24 06:27:02 +03:00
|
|
|
fn C.sigemptyset() int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-09-08 13:09:32 +03:00
|
|
|
fn C.getcwd(buf &char, size usize) &char
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2019-11-24 06:27:02 +03:00
|
|
|
fn C.mktime() int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.gettimeofday(tv &C.timeval, tz &C.timezone) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2020-08-09 12:22:11 +03:00
|
|
|
[trusted]
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.sleep(seconds u32) u32
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
// fn C.usleep(usec useconds_t) int
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.usleep(usec u32) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-10-22 17:08:08 +03:00
|
|
|
[typedef]
|
|
|
|
struct C.DIR {
|
|
|
|
}
|
|
|
|
|
|
|
|
fn C.opendir(&char) &C.DIR
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.closedir(dirp &C.DIR) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
// fn C.mkdir(path &char, mode mode_t) int
|
|
|
|
fn C.mkdir(path &char, mode u32) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-02-14 21:37:32 +03:00
|
|
|
// C.rand returns a pseudorandom integer from 0 (inclusive) to C.RAND_MAX (exclusive)
|
|
|
|
[trusted]
|
|
|
|
fn C.rand() int
|
|
|
|
|
|
|
|
// C.srand seeds the internal PRNG with the given value.
|
|
|
|
[trusted]
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.srand(seed u32)
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.atof(str &char) f64
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.tolower(c int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.toupper(c int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-01-25 20:15:45 +03:00
|
|
|
[trusted]
|
|
|
|
fn C.isspace(c int) int
|
|
|
|
|
2022-01-19 15:26:24 +03:00
|
|
|
fn C.strchr(s &char, c int) &char
|
|
|
|
|
2020-08-09 12:22:11 +03:00
|
|
|
[trusted]
|
2019-11-24 06:27:02 +03:00
|
|
|
fn C.getchar() int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-10-11 20:53:12 +03:00
|
|
|
[trusted]
|
|
|
|
fn C.putchar(int) int
|
|
|
|
|
2022-01-24 06:14:31 +03:00
|
|
|
fn C.strdup(s &char) &char
|
|
|
|
|
|
|
|
fn C.strncasecmp(s &char, s2 &char, n int) int
|
|
|
|
|
|
|
|
fn C.strcasecmp(s &char, s2 &char) int
|
|
|
|
|
2022-01-25 20:15:45 +03:00
|
|
|
fn C.strncmp(s &char, s2 &char, n int) int
|
|
|
|
|
2020-08-09 12:22:11 +03:00
|
|
|
[trusted]
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.strerror(int) &char
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-09-08 13:09:32 +03:00
|
|
|
fn C.snprintf(str &char, size usize, format &char, opt ...voidptr) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-05 22:24:17 +03:00
|
|
|
fn C.fprintf(voidptr, &char, ...voidptr)
|
2019-11-24 06:27:02 +03:00
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.WIFEXITED(status int) bool
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.WEXITSTATUS(status int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.WIFSIGNALED(status int) bool
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.WTERMSIG(status int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.isatty(fd int) int
|
2019-11-24 06:27:02 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.syscall(number int, va ...voidptr) int
|
2019-11-24 06:27:02 +03:00
|
|
|
|
2021-09-08 13:09:32 +03:00
|
|
|
fn C.sysctl(name &int, namelen u32, oldp voidptr, oldlenp voidptr, newp voidptr, newlen usize) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2019-10-24 15:41:29 +03:00
|
|
|
fn C._fileno(int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2019-11-16 02:30:50 +03:00
|
|
|
fn C._get_osfhandle(fd int) C.intptr_t
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-10-17 20:23:33 +03:00
|
|
|
fn C.GetModuleFileName(hModule voidptr, lpFilename &u16, nSize u32) u32
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2020-11-16 19:32:50 +03:00
|
|
|
fn C.GetModuleFileNameW(hModule voidptr, lpFilename &u16, nSize u32) u32
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.CreateFile(lpFilename &u16, dwDesiredAccess u32, dwShareMode u32, lpSecurityAttributes &u16, dwCreationDisposition u32, dwFlagsAndAttributes u32, hTemplateFile voidptr) voidptr
|
2020-07-16 19:33:26 +03:00
|
|
|
|
2022-10-17 20:23:33 +03:00
|
|
|
fn C.CreateFileW(lpFilename &u16, dwDesiredAccess u32, dwShareMode u32, lpSecurityAttributes &u16, dwCreationDisposition u32, dwFlagsAndAttributes u32, hTemplateFile voidptr) voidptr
|
2020-07-16 19:33:26 +03:00
|
|
|
|
2022-10-17 20:23:33 +03:00
|
|
|
fn C.GetFinalPathNameByHandleW(hFile voidptr, lpFilePath &u16, nSize u32, dwFlags u32) u32
|
2020-07-16 19:33:26 +03:00
|
|
|
|
2019-11-16 02:30:50 +03:00
|
|
|
fn C.CreatePipe(hReadPipe &voidptr, hWritePipe &voidptr, lpPipeAttributes voidptr, nSize u32) bool
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2020-05-16 17:12:23 +03:00
|
|
|
fn C.SetHandleInformation(hObject voidptr, dwMask u32, dw_flags u32) bool
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2019-11-16 02:30:50 +03:00
|
|
|
fn C.ExpandEnvironmentStringsW(lpSrc &u16, lpDst &u16, nSize u32) u32
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-24 13:22:04 +03:00
|
|
|
fn C.GetComputerNameW(&u16, &u32) bool
|
|
|
|
|
2021-04-25 18:16:14 +03:00
|
|
|
fn C.GetUserNameW(&u16, &u32) bool
|
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2022-10-17 20:23:33 +03:00
|
|
|
fn C.SendMessageTimeout() isize
|
2020-06-08 10:19:31 +03:00
|
|
|
|
2022-10-17 20:23:33 +03:00
|
|
|
fn C.SendMessageTimeoutW(hWnd voidptr, msg u32, wParam &u16, lParam &u32, fuFlags u32, uTimeout u32, lpdwResult &u64) isize
|
2020-06-08 10:19:31 +03:00
|
|
|
|
2019-11-16 02:30:50 +03:00
|
|
|
fn C.CreateProcessW(lpApplicationName &u16, lpCommandLine &u16, lpProcessAttributes voidptr, lpThreadAttributes voidptr, bInheritHandles bool, dwCreationFlags u32, lpEnvironment voidptr, lpCurrentDirectory &u16, lpStartupInfo voidptr, lpProcessInformation voidptr) bool
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2020-09-16 17:40:02 +03:00
|
|
|
fn C.ReadFile(hFile voidptr, lpBuffer voidptr, nNumberOfBytesToRead u32, lpNumberOfBytesRead C.LPDWORD, lpOverlapped voidptr) bool
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-04-15 14:45:52 +03:00
|
|
|
fn C.GetFileAttributesW(lpFileName &u8) u32
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-10-17 20:23:33 +03:00
|
|
|
fn C.RegQueryValueEx(hKey voidptr, lpValueName &u16, lp_reserved &u32, lpType &u32, lpData &u8, lpcbData &u32) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-04-15 14:45:52 +03:00
|
|
|
fn C.RegQueryValueExW(hKey voidptr, lpValueName &u16, lp_reserved &u32, lpType &u32, lpData &u8, lpcbData &u32) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-10-17 20:23:33 +03:00
|
|
|
fn C.RegOpenKeyEx(hKey voidptr, lpSubKey &u16, ulOptions u32, samDesired u32, phkResult voidptr) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2020-11-16 19:32:50 +03:00
|
|
|
fn C.RegOpenKeyExW(hKey voidptr, lpSubKey &u16, ulOptions u32, samDesired u32, phkResult voidptr) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-10-17 20:23:33 +03:00
|
|
|
fn C.RegSetValueEx(hKey voidptr, lpValueName &u16, dwType u32, lpData &u16, cbData u32) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-10-17 20:23:33 +03:00
|
|
|
fn C.RegSetValueExW(hKey voidptr, lpValueName &u16, reserved u32, dwType u32, const_lpData &u8, cbData u32) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-10-17 20:23:33 +03:00
|
|
|
fn C.RegCloseKey(hKey voidptr) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-10-17 20:23:33 +03:00
|
|
|
fn C.RemoveDirectory(lpPathName &u16) bool
|
|
|
|
|
|
|
|
fn C.RemoveDirectoryW(lpPathName &u16) bool
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2020-02-10 10:32:08 +03:00
|
|
|
fn C.GetStdHandle(u32) voidptr
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-10-17 20:23:33 +03:00
|
|
|
fn C.SetConsoleMode(voidptr, u32) bool
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-10-17 20:23:33 +03:00
|
|
|
fn C.GetConsoleMode(voidptr, &u32) bool
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2022-10-17 20:23:33 +03:00
|
|
|
fn C.GetCurrentProcessId() u32
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2019-11-24 13:16:02 +03:00
|
|
|
fn C.wprintf()
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2020-11-16 19:32:50 +03:00
|
|
|
// fn C.setbuf()
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.setbuf(voidptr, &char)
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.SymCleanup(hProcess voidptr)
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.MultiByteToWideChar(codePage u32, dwFlags u32, lpMultiMyteStr &char, cbMultiByte int, lpWideCharStr &u16, cchWideChar int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.wcslen(str &u16) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C.WideCharToMultiByte(codePage u32, dwFlags u32, lpWideCharStr &u16, cchWideChar int, lpMultiByteStr &char, cbMultiByte int, lpDefaultChar &char, lpUsedDefaultChar &int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-19 14:57:25 +03:00
|
|
|
fn C._wstat(path &u16, buffer &C._stat) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C._wrename(oldname &u16, newname &u16) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C._wfopen(filename &u16, mode &u16) voidptr
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C._wpopen(command &u16, mode &u16) voidptr
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C._pclose(stream &C.FILE) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C._wsystem(command &u16) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C._wgetenv(varname &u16) voidptr
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:43:32 +03:00
|
|
|
fn C._putenv(envstring &char) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C._waccess(path &u16, mode int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C._wremove(path &u16) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-02-27 13:50:15 +03:00
|
|
|
fn C.ReadConsole(in_input_handle voidptr, out_buffer voidptr, in_chars_to_read u32, out_read_chars &u32, in_input_control voidptr) bool
|
2020-01-10 00:47:13 +03:00
|
|
|
|
|
|
|
fn C.WriteConsole() voidptr
|
|
|
|
|
|
|
|
fn C.WriteFile() voidptr
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-08-27 09:00:14 +03:00
|
|
|
fn C._wchdir(dirname &u16) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C._wgetcwd(buffer &u16, maxlen int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2019-11-24 15:16:05 +03:00
|
|
|
fn C._fullpath() int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-02-19 12:20:06 +03:00
|
|
|
fn C.GetFullPathName(voidptr, u32, voidptr, voidptr) u32
|
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2019-11-24 15:16:05 +03:00
|
|
|
fn C.GetCommandLine() voidptr
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2019-11-24 15:16:05 +03:00
|
|
|
fn C.LocalFree()
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.FindFirstFileW(lpFileName &u16, lpFindFileData voidptr) voidptr
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-04-15 14:45:52 +03:00
|
|
|
fn C.FindFirstFile(lpFileName &u8, lpFindFileData voidptr) voidptr
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.FindNextFile(hFindFile voidptr, lpFindFileData voidptr) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.FindClose(hFindFile voidptr)
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
// macro
|
|
|
|
fn C.MAKELANGID(lgid voidptr, srtid voidptr) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-08-13 17:03:39 +03:00
|
|
|
fn C.FormatMessage(dwFlags u32, lpSource voidptr, dwMessageId u32, dwLanguageId u32, lpBuffer voidptr, nSize int, arguments ...voidptr) voidptr
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2020-08-06 16:28:19 +03:00
|
|
|
fn C.CloseHandle(voidptr) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.GetExitCodeProcess(hProcess voidptr, lpExitCode &u32)
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2019-11-24 15:31:51 +03:00
|
|
|
fn C.GetTickCount() i64
|
2019-11-25 04:35:41 +03:00
|
|
|
|
2021-04-04 17:05:06 +03:00
|
|
|
[trusted]
|
2021-03-05 17:41:11 +03:00
|
|
|
fn C.Sleep(dwMilliseconds u32)
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2019-11-25 04:35:41 +03:00
|
|
|
fn C.WSAStartup(u16, &voidptr) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-01-25 20:31:40 +03:00
|
|
|
[trusted]
|
2019-11-25 04:35:41 +03:00
|
|
|
fn C.WSAGetLastError() int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2019-11-25 04:35:41 +03:00
|
|
|
fn C.closesocket(int) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2019-11-25 04:35:41 +03:00
|
|
|
fn C.vschannel_init(&C.TlsContext)
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-04-15 14:45:52 +03:00
|
|
|
fn C.request(&C.TlsContext, int, &u16, &u8, &&u8) int
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2019-11-25 04:35:41 +03:00
|
|
|
fn C.vschannel_cleanup(&C.TlsContext)
|
2019-12-19 23:52:45 +03:00
|
|
|
|
|
|
|
fn C.URLDownloadToFile(int, &u16, &u16, int, int)
|
|
|
|
|
2022-01-25 20:31:40 +03:00
|
|
|
[trusted]
|
2019-11-25 04:35:41 +03:00
|
|
|
fn C.GetLastError() u32
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2022-04-15 14:45:52 +03:00
|
|
|
fn C.CreateDirectory(&u8, int) bool
|
2019-12-19 23:52:45 +03:00
|
|
|
|
2020-06-22 20:23:42 +03:00
|
|
|
// win crypto
|
2019-12-19 23:52:45 +03:00
|
|
|
fn C.BCryptGenRandom(int, voidptr, int, int) int
|
|
|
|
|
2020-06-22 20:23:42 +03:00
|
|
|
// win synchronization
|
2022-04-15 14:45:52 +03:00
|
|
|
fn C.CreateMutex(int, bool, &u8) voidptr
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2019-12-19 23:52:45 +03:00
|
|
|
fn C.WaitForSingleObject(voidptr, int) int
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2019-12-01 10:33:26 +03:00
|
|
|
fn C.ReleaseMutex(voidptr) bool
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2022-04-15 14:45:52 +03:00
|
|
|
fn C.CreateEvent(int, bool, bool, &u8) voidptr
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2020-06-22 20:23:42 +03:00
|
|
|
fn C.SetEvent(voidptr) int
|
2020-05-15 23:23:31 +03:00
|
|
|
|
2020-07-15 11:22:33 +03:00
|
|
|
fn C.CreateSemaphore(voidptr, int, int, voidptr) voidptr
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2020-07-15 11:22:33 +03:00
|
|
|
fn C.ReleaseSemaphore(voidptr, int, voidptr) voidptr
|
|
|
|
|
2020-07-05 23:53:28 +03:00
|
|
|
fn C.InitializeSRWLock(voidptr)
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2020-07-05 23:53:28 +03:00
|
|
|
fn C.AcquireSRWLockShared(voidptr)
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2020-07-05 23:53:28 +03:00
|
|
|
fn C.AcquireSRWLockExclusive(voidptr)
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2020-07-05 23:53:28 +03:00
|
|
|
fn C.ReleaseSRWLockShared(voidptr)
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2020-07-05 23:53:28 +03:00
|
|
|
fn C.ReleaseSRWLockExclusive(voidptr)
|
2020-05-15 23:23:31 +03:00
|
|
|
|
2020-06-22 20:23:42 +03:00
|
|
|
// pthread.h
|
2020-05-15 23:23:31 +03:00
|
|
|
fn C.pthread_mutex_init(voidptr, voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-05-15 23:23:31 +03:00
|
|
|
fn C.pthread_mutex_lock(voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-05-15 23:23:31 +03:00
|
|
|
fn C.pthread_mutex_unlock(voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-08-06 16:28:19 +03:00
|
|
|
fn C.pthread_mutex_destroy(voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-05 23:53:28 +03:00
|
|
|
fn C.pthread_rwlockattr_init(voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-05 23:53:28 +03:00
|
|
|
fn C.pthread_rwlockattr_setkind_np(voidptr, int) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-07 02:57:31 +03:00
|
|
|
fn C.pthread_rwlockattr_setpshared(voidptr, int) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-05 23:53:28 +03:00
|
|
|
fn C.pthread_rwlock_init(voidptr, voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-05 23:53:28 +03:00
|
|
|
fn C.pthread_rwlock_rdlock(voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-05 23:53:28 +03:00
|
|
|
fn C.pthread_rwlock_wrlock(voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-05 23:53:28 +03:00
|
|
|
fn C.pthread_rwlock_unlock(voidptr) int
|
|
|
|
|
2020-07-15 11:22:33 +03:00
|
|
|
fn C.pthread_condattr_init(voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-15 11:22:33 +03:00
|
|
|
fn C.pthread_condattr_setpshared(voidptr, int) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-08-06 16:28:19 +03:00
|
|
|
fn C.pthread_condattr_destroy(voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-15 11:22:33 +03:00
|
|
|
fn C.pthread_cond_init(voidptr, voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-15 11:22:33 +03:00
|
|
|
fn C.pthread_cond_signal(voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-15 11:22:33 +03:00
|
|
|
fn C.pthread_cond_wait(voidptr, voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-15 11:22:33 +03:00
|
|
|
fn C.pthread_cond_timedwait(voidptr, voidptr, voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-08-06 16:28:19 +03:00
|
|
|
fn C.pthread_cond_destroy(voidptr) int
|
2020-07-15 11:22:33 +03:00
|
|
|
|
|
|
|
fn C.sem_init(voidptr, int, u32) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-15 11:22:33 +03:00
|
|
|
fn C.sem_post(voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-15 11:22:33 +03:00
|
|
|
fn C.sem_wait(voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-15 11:22:33 +03:00
|
|
|
fn C.sem_trywait(voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-07-15 11:22:33 +03:00
|
|
|
fn C.sem_timedwait(voidptr, voidptr) int
|
2021-02-18 10:02:56 +03:00
|
|
|
|
2020-08-06 16:28:19 +03:00
|
|
|
fn C.sem_destroy(voidptr) int
|
2020-07-15 11:22:33 +03:00
|
|
|
|
2020-08-12 04:45:09 +03:00
|
|
|
// MacOS semaphore functions
|
2022-01-25 20:31:40 +03:00
|
|
|
[trusted]
|
2020-08-12 04:45:09 +03:00
|
|
|
fn C.dispatch_semaphore_create(i64) voidptr
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2020-08-12 04:45:09 +03:00
|
|
|
fn C.dispatch_semaphore_signal(voidptr) i64
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2020-08-12 04:45:09 +03:00
|
|
|
fn C.dispatch_semaphore_wait(voidptr, u64) i64
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2022-01-25 20:31:40 +03:00
|
|
|
[trusted]
|
2020-08-12 04:45:09 +03:00
|
|
|
fn C.dispatch_time(u64, i64) u64
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2020-08-12 04:45:09 +03:00
|
|
|
fn C.dispatch_release(voidptr)
|
|
|
|
|
2020-11-16 19:32:50 +03:00
|
|
|
// file descriptor based reading/writing
|
2021-09-08 13:09:32 +03:00
|
|
|
fn C.read(fd int, buf voidptr, count usize) int
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2021-09-08 13:09:32 +03:00
|
|
|
fn C.write(fd int, buf voidptr, count usize) int
|
2020-11-16 19:32:50 +03:00
|
|
|
|
2020-06-01 22:11:40 +03:00
|
|
|
fn C.close(fd int) int
|
2020-06-11 21:16:12 +03:00
|
|
|
|
2020-11-16 19:32:50 +03:00
|
|
|
// pipes
|
|
|
|
fn C.pipe(pipefds &int) int
|
|
|
|
|
|
|
|
fn C.dup2(oldfd int, newfd int) int
|
|
|
|
|
2020-06-11 21:16:12 +03:00
|
|
|
// used by gl, stbi, freetype
|
|
|
|
fn C.glTexImage2D()
|
2021-04-10 17:40:43 +03:00
|
|
|
|
|
|
|
// used by ios for println
|
2022-04-15 14:45:52 +03:00
|
|
|
fn C.WrappedNSLog(str &u8)
|
2022-04-26 01:34:26 +03:00
|
|
|
|
2022-07-07 18:28:29 +03:00
|
|
|
// used by Android for (e)println to output to the Android log system / logcat
|
|
|
|
pub fn C.android_print(voidptr, &char, ...voidptr)
|
|
|
|
|
2022-04-26 01:34:26 +03:00
|
|
|
// absolute value
|
|
|
|
fn C.abs(number int) int
|