blob: 06608febb7357fc5cbeb3e04c69568cdbea20371 (
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
28
29
30
31
32
33
34
|
/* Copyright 2013 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.
*/
/* From dev/pp_optional_structs_dev.idl modified Tue Dec 10 17:39:38 2013. */
#ifndef PPAPI_C_DEV_PP_OPTIONAL_STRUCTS_DEV_H_
#define PPAPI_C_DEV_PP_OPTIONAL_STRUCTS_DEV_H_
#include "ppapi/c/pp_bool.h"
#include "ppapi/c/pp_macros.h"
#include "ppapi/c/pp_stdint.h"
/**
* @file
* This file defines optional structs for primitive types.
*/
/**
* @addtogroup Structs
* @{
*/
struct PP_Optional_Double_Dev {
double value;
PP_Bool is_set;
};
/**
* @}
*/
#endif /* PPAPI_C_DEV_PP_OPTIONAL_STRUCTS_DEV_H_ */
|