forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmac.pxd
More file actions
11 lines (9 loc) · 407 Bytes
/
mac.pxd
File metadata and controls
11 lines (9 loc) · 407 Bytes
1
2
3
4
5
6
7
8
9
10
11
# Copyright (c) 2015 CEF Python, see the Authors file.
# All rights reserved. Licensed under BSD 3-clause license.
# Project website: https://github.com/cztomczak/cefpython
from cef_ptr cimport CefRefPtr
from cef_browser cimport CefBrowser
cdef extern from "client_handler/util_mac.h":
void MacInitialize()
void MacShutdown()
void MacSetWindowTitle(CefRefPtr[CefBrowser] browser, char* title)