| Index: ppapi/c/pp_point.h
|
| ===================================================================
|
| --- ppapi/c/pp_point.h (revision 92804)
|
| +++ ppapi/c/pp_point.h (working copy)
|
| @@ -2,24 +2,26 @@
|
| * Use of this source code is governed by a BSD-style license that can be
|
| * found in the LICENSE file.
|
| */
|
| +
|
| +/* From pp_point.idl modified Sat Jul 16 16:50:26 2011. */
|
| +
|
| #ifndef PPAPI_C_PP_POINT_H_
|
| #define PPAPI_C_PP_POINT_H_
|
|
|
| +#include "ppapi/c/pp_macros.h"
|
| +#include "ppapi/c/pp_stdint.h"
|
| +
|
| /**
|
| * @file
|
| * This file defines the API to create a 2 dimensional point.
|
| * 0,0 is the upper-left starting coordinate.
|
| */
|
|
|
| -#include "ppapi/c/pp_macros.h"
|
| -#include "ppapi/c/pp_stdint.h"
|
|
|
| /**
|
| - *
|
| * @addtogroup Structs
|
| * @{
|
| */
|
| -
|
| /**
|
| * The PP_Point structure defines the integer x and y coordinates of a point.
|
| */
|
| @@ -29,7 +31,6 @@
|
| * as the left-most coordinate.
|
| */
|
| int32_t x;
|
| -
|
| /**
|
| * This value represents the vertical coordinate of a point, starting with 0
|
| * as the top-most coordinate.
|
|
|