X Tutup
// Copyright (c) 2016 CEF Python, see the Authors file. // All rights reserved. Licensed under BSD 3-clause license. // Project website: https://github.com/cztomczak/cefpython #pragma once #include #include "include/cef_browser.h" void InstallX11ErrorHandlers(); void SetX11WindowBounds(CefRefPtr browser, int x, int y, int width, int height); void SetX11WindowTitle(CefRefPtr browser, char* title);
X Tutup