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
38 lines (31 loc) · 1004 Bytes

File metadata and controls

38 lines (31 loc) · 1004 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
31
32
33
34
35
36
37
38
/* This is a wrapper around including cefpython.h that is generated
by Cython. Functions marked with the 'public' keyword are exposed
to C through that header file. */
#ifndef CEFPYTHON_PUBLIC_API_H
#define CEFPYTHON_PUBLIC_API_H
#if defined(OS_WIN)
#pragma warning(disable:4190) // cefpython.h extern C-linkage warnings
#endif
#include "Python.h"
// cefpython.h declares public functions using DL_IMPORT and these
// macros are not available in Python 3.
#ifndef DL_IMPORT
#define DL_IMPORT(RTYPE) RTYPE
#endif
#ifndef DL_EXPORT
#define DL_EXPORT(RTYPE) RTYPE
#endif
// Includes required by "cefpython.h".
#include "include/cef_client.h"
#include "include/cef_urlrequest.h"
#include "include/cef_command_line.h"
#include "util.h"
// cefpython.h include depending on platform
#if defined(OS_WIN)
#include "windows/setup/cefpython.h"
#elif defined(OS_LINUX)
#include "linux/setup/cefpython.h"
#elif defined(OS_MACOSX)
#include "mac/setup/cefpython.h"
#endif
#endif // CEFPYTHON_PUBLIC_API_H
Morty Proxy This is a proxified and sanitized view of the page, visit original site.