forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcef_process_message.pxd
More file actions
22 lines (20 loc) · 871 Bytes
/
cef_process_message.pxd
File metadata and controls
22 lines (20 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright (c) 2013 CEF Python, see the Authors file.
# All rights reserved. Licensed under BSD 3-clause license.
# Project website: https://github.com/cztomczak/cefpython
# noinspection PyUnresolvedReferences
from cef_types cimport cef_process_id_t
from cef_ptr cimport CefRefPtr
from cef_string cimport CefString
from libcpp cimport bool as cpp_bool
from cef_values cimport CefListValue
cdef extern from "include/cef_process_message.h":
cdef CefRefPtr[CefProcessMessage] CefProcessMessage_Create \
"CefProcessMessage::Create"(const CefString& name)
cdef cppclass CefProcessMessage:
cpp_bool IsValid()
cpp_bool IsReadOnly()
CefRefPtr[CefProcessMessage] Copy()
CefString GetName()
CefRefPtr[CefListValue] GetArgumentList()
# noinspection PyUnresolvedReferences
ctypedef cef_process_id_t CefProcessId