Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1b513fcb77346ef917b98650ff018dccce8718d3 (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2013 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

#ifndef INC_cef3_H
#define INC_cef3_H

typedef enum cef_key_event_type_t cef_key_event_type_t;
typedef enum cef_log_severity_t cef_log_severity_t;
typedef enum cef_geoposition_error_code_t cef_geoposition_error_code_t;
typedef enum cef_state_t cef_state_t;
#define bool int

#include <cef_app_capi.h>
#include <cef_browser_capi.h>
#include <cef_frame_capi.h>
#include <cef_version.h>
#include <cef_process_message_capi.h>
#include <cef_values_capi.h>

#endif /* INC_cef3_H */

Back to the top