1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

v2: type sys - store type idx/ptr in int & add helpers

This commit is contained in:
joe-conigliaro
2020-02-10 18:32:08 +11:00
committed by GitHub
parent 9845fd1cf5
commit e274c5c485
11 changed files with 515 additions and 426 deletions

View File

@ -240,19 +240,23 @@ fn C.RegQueryValueEx() voidptr
fn C.RemoveDirectory() int
fn C.GetStdHandle() voidptr
//fn C.GetStdHandle() voidptr
fn C.GetStdHandle(u32) voidptr
fn C.SetConsoleMode()
//fn C.SetConsoleMode()
fn C.SetConsoleMode(voidptr, u32)
fn C.GetConsoleMode() int
//fn C.GetConsoleMode() int
fn C.GetConsoleMode(voidptr, &u32) int
fn C.wprintf()
fn C.setbuf()
//fn C.setbuf()
fn C.setbuf(voidptr, charptr)
fn C.SymCleanup()