blob: 3f052577a8961ffc81fd4af1b6302520bc68598e (
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
27
|
/* 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_ */
|