blob: ea8402494c188ef9bc037052935e8ccc786433f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Copyright (c) 2006-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 _NP_EXTENSIONS_PRIVATE_H_
#define _NP_EXTENSIONS_PRIVATE_H_
#include "third_party/npapi/bindings/npapi.h"
// Some reserved GetStateContext/SetStateContext selectors.
typedef enum {
NPExtensionsReservedStateSharedMemory = 66536
// Used by the Device2D and Audio devices to return a pointer to the
// structure used to implement the shared memory buffer for the device.
} NPExtensionsReservedStates;
#endif /* _NP_EXTENSIONS_PRIVATE_H_ */
|