forked from cztomczak/cef2go
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcef_base.h
More file actions
24 lines (18 loc) · 737 Bytes
/
cef_base.h
File metadata and controls
24 lines (18 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) 2014 The cefcapi authors. All rights reserved.
// License: BSD 3-clause.
// Website: https://github.com/CzarekTomczak/cefcapi
// Website: https://github.com/fromkeith/cefcapi
#ifndef CEF_BASE_H
#define CEF_BASE_H
#include <stdio.h>
#include <unistd.h>
#include "include/capi/cef_base_capi.h"
cef_string_utf8_t * cefStringToUtf8(const cef_string_t * source);
cef_string_t * cefString16CastToCefString(cef_string_utf16_t * source);
cef_string_utf16_t * cefStringCastToCefString16(cef_string_t * source);
void CEF_CALLBACK add_ref(cef_base_t* self);
int CEF_CALLBACK release(cef_base_t* self);
void initialize_cef_base(cef_base_t* base, char *name);
void add_refVoid(void* self);
int releaseVoid(void* self);
#endif