blob: 1f525cdc028787d1a4f42319f3880f64e5a9bd71 (
plain)
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
|
// Copyright (c) 2010 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_C_PPB_H_
#define PPAPI_C_PPB_H_
/**
* @file
* Defines the API ...
*
* @addtogroup PPB
* @{
*/
/**
* Returns an interface pointer for the interface of the given name, or NULL
* if the interface is not supported. Interface names should be ASCII.
*/
typedef const void* (*PPB_GetInterface)(const char* interface_name);
/**
* @}
* End addtogroup PPB
*/
#endif // PPAPI_C_PPB_H_
|