pulsar/native/message_translation.h

11 lines
350 B
C
Raw Normal View History

2012-08-30 20:11:01 +04:00
#ifndef ATOM_CEF_CLIENT_H_
#define ATOM_CEF_CLIENT_H_
#pragma once
#include "include/cef_v8.h"
// IPC data translation functions: translate a V8 array to a List, and vice versa
void TranslateList(CefRefPtr<CefV8Value> source, CefRefPtr<CefListValue> target);
void TranslateList(CefRefPtr<CefListValue> source, CefRefPtr<CefV8Value> target);
2012-08-30 20:11:01 +04:00
#endif