mirror of
https://github.com/vlang/v.git
synced 2025-09-09 07:15:50 -04:00
time: make C._FILETIME and C.tm fields pub mut
This commit is contained in:
parent
6a550ab86e
commit
fc45c0a55b
@ -8,6 +8,7 @@ module time
|
||||
#include <errno.h>
|
||||
|
||||
pub struct C.tm {
|
||||
pub mut:
|
||||
tm_sec int
|
||||
tm_min int
|
||||
tm_hour int
|
||||
|
@ -7,6 +7,7 @@ module time
|
||||
// #include <sysinfoapi.h>
|
||||
|
||||
pub struct C.tm {
|
||||
pub mut:
|
||||
tm_year int
|
||||
tm_mon int
|
||||
tm_mday int
|
||||
@ -16,6 +17,7 @@ pub struct C.tm {
|
||||
}
|
||||
|
||||
pub struct C._FILETIME {
|
||||
pub mut:
|
||||
dwLowDateTime u32
|
||||
dwHighDateTime u32
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user