forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcef_platform.pxd
More file actions
14 lines (12 loc) · 488 Bytes
/
cef_platform.pxd
File metadata and controls
14 lines (12 loc) · 488 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright (c) 2012-2014 The CEF Python authors. All rights reserved.
# License: New BSD License.
# Website: http://code.google.com/p/cefpython/
include "compile_time_constants.pxi"
IF UNAME_SYSNAME == "Windows":
# noinspection PyUnresolvedReferences
from cef_win cimport CefWindowHandle, CefCursorHandle, CefKeyInfo,\
CefWindowInfo
ELIF UNAME_SYSNAME == "Darwin":
from cef_mac cimport *
ELIF UNAME_SYSNAME == "Linux":
from cef_linux cimport *