blob: 07a5a864065327405f5f34797f4c029bbac8866f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PPAPI_NACL_IRT_IRT_PPAPI_H_
#define PPAPI_NACL_IRT_IRT_PPAPI_H_
#include "ppapi/nacl_irt/public/irt_ppapi.h"
#ifdef __cplusplus
extern "C" {
#endif
int irt_ppapi_start(const struct PP_StartFunctions* funcs);
void PpapiPluginRegisterThreadCreator(
const struct PP_ThreadFunctions* new_funcs);
#ifdef __cplusplus
}
#endif
#endif // PPAPI_NACL_IRT_IRT_PPAPI_H_
|