-
-
Notifications
You must be signed in to change notification settings - Fork 479
Expand file tree
/
Copy pathcef_time.pxd
More file actions
23 lines (20 loc) · 608 Bytes
/
cef_time.pxd
File metadata and controls
23 lines (20 loc) · 608 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright (c) 2012-2014 The CEF Python authors. All rights reserved.
# License: New BSD License.
# Website: http://code.google.com/p/cefpython/
from ctime cimport time_t
cdef extern from "include/internal/cef_time.h":
ctypedef struct cef_time_t:
int year
int month
int day_of_week
int day_of_month
int hour
int minute
int second
int millisecond
cdef extern from "include/internal/cef_types_wrappers.h":
cdef cppclass CefTime:
CefTime()
CefTime(cef_time_t&)
void SetTimeT(time_t r)
time_t GetTimeT()