mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
os: update C apis used in os_android.c.v (#9134)
This commit is contained in:
parent
07a1a9b84d
commit
204f57d227
@ -1,6 +1,6 @@
|
||||
module os
|
||||
|
||||
struct C.AAset {
|
||||
struct C.AAsset {
|
||||
}
|
||||
|
||||
struct C.AAssetManager {
|
||||
@ -10,11 +10,11 @@ struct C.ANativeActivity {
|
||||
assetManager voidptr
|
||||
}
|
||||
|
||||
fn C.AAssetManager_open(&C.AAsetManager, charptr, int) &C.AAset
|
||||
fn C.AAssetManager_open(&C.AAssetManager, charptr, int) &C.AAsset
|
||||
|
||||
fn C.AAsset_getLength(&C.AAset) int
|
||||
fn C.AAsset_getLength(&C.AAsset) int
|
||||
|
||||
fn C.AAsset_read(&C.AAset, voidptr, int) int
|
||||
fn C.AAsset_read(&C.AAsset, voidptr, int) int
|
||||
|
||||
fn C.AAsset_close(&C.AAsset)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user