X Tutup
# Copyright (c) 2012-2014 The CEF Python authors. All rights reserved. # License: New BSD License. # Website: http://code.google.com/p/cefpython/ from libcpp cimport bool as cpp_bool from libc.stddef cimport wchar_t from libcpp.string cimport string as cpp_string from wstring cimport wstring as cpp_wstring cdef extern from "include/internal/cef_string.h": ctypedef struct cef_string_t: pass cdef cppclass CefString: CefString() CefString(cef_string_t*) void Attach(cef_string_t* str, cpp_bool owner) cpp_bool empty() cpp_bool FromASCII(char*) # noinspection PyUnresolvedReferences cpp_bool FromString(wchar_t*, size_t, cpp_bool) cpp_bool FromString(cpp_string& str) cpp_string ToString() cpp_wstring ToWString() char* c_str() size_t length()
X Tutup