forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcef_command_line.pxd
More file actions
19 lines (15 loc) · 702 Bytes
/
cef_command_line.pxd
File metadata and controls
19 lines (15 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright (c) 2012-2014 The CEF Python authors. All rights reserved.
# License: New BSD License.
# Website: http://code.google.com/p/cefpython/
# Circular imports are allowed in form "cimport ...",
# but won't work if you do "from ... cimport *".
include "compile_time_constants.pxi"
from cef_string cimport CefString
from libcpp cimport bool as cpp_bool
cdef extern from "include/cef_command_line.h":
cdef cppclass CefCommandLine:
void AppendSwitch(CefString& name)
void AppendSwitchWithValue(CefString& name, CefString& value)
CefString GetCommandLineString()
cpp_bool HasSwitch(const CefString& name)
CefString GetSwitchValue(const CefString& name)