Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
30 lines (25 loc) · 920 Bytes

File metadata and controls

30 lines (25 loc) · 920 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// d:\cefpython\src\setup/cefpython.h(22) : warning C4190: 'RequestHandler_GetCookieManager'
// has C-linkage specified, but returns UDT 'CefRefPtr<T>' which is incompatible with C
#if defined(OS_WIN)
#pragma warning(disable:4190)
#endif
// All the imports that are required when including "cefpython.h".
#include "include/cef_client.h"
#include "include/cef_web_urlrequest.h"
#include "include/cef_cookie.h"
#include "util.h"
// To be able to use 'public' declarations you need to include Python.h and cefpython.h.
#include "Python.h"
// Python 3.2 fix - DL_IMPORT is not defined in Python.h
#ifndef DL_IMPORT /* declarations for DLL import/export */
#define DL_IMPORT(RTYPE) RTYPE
#endif
#ifndef DL_EXPORT /* declarations for DLL import/export */
#define DL_EXPORT(RTYPE) RTYPE
#endif
#if defined(OS_WIN)
#include "windows/setup/cefpython.h"
#endif
#if defined(OS_LINUX)
#include "linux/setup/cefpython.h"
#endif
Morty Proxy This is a proxified and sanitized view of the page, visit original site.