blob: 90a8884f1a4c446cfef26cb64c84edc521c86417 (
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
|
/**
* @defgroup CPP C++ API (Use This)
* Description of C++ API goes here.
* Mention the pp::Instance and pp::Resource classes.
*
* @defgroup CAPI C API (Refer to This)
* These APIs define the implementation of PPAPI;
* they are the contract.
* However, you should use the @ref CPP "C++ API" whenever possible.
*
* @defgroup PP PP: Data Types
* @ingroup CAPI
* Pepper data types begin with the prefix PP_.
*
* @defgroup PPB PPB: How the Nexe Calls the Browser
* @ingroup CAPI
* Browser functions that a nexe can call
* begin with the prefix PPB_.
*
* @defgroup PPP PPP: How the Browser Calls the Nexe
* @ingroup CAPI
* Nexe functions that the browser can call
* begin with the prefix PPP_.
*/
|