/* Copyright 2012 The Chromium Authors * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* From ppb_mouse_cursor.idl modified Thu Mar 28 10:11:32 2013. */ #ifndef PPAPI_C_PPB_MOUSE_CURSOR_H_ #define PPAPI_C_PPB_MOUSE_CURSOR_H_ #include "ppapi/c/pp_bool.h" #include "ppapi/c/pp_instance.h" #include "ppapi/c/pp_macros.h" #include "ppapi/c/pp_point.h" #include "ppapi/c/pp_resource.h" #include "ppapi/c/pp_stdint.h" #define PPB_MOUSECURSOR_INTERFACE_1_0 … #define PPB_MOUSECURSOR_INTERFACE … /** * @file * This file defines the <code>PPB_MouseCursor</code> interface for setting * the mouse cursor. */ /** * @addtogroup Enums * @{ */ /** * The <code>PP_MouseCursor_Type</code> enumeration lists the available stock * cursor types. */ enum PP_MouseCursor_Type { … }; PP_COMPILE_ASSERT_ENUM_SIZE_IN_BYTES(…); /** * @} */ /** * @addtogroup Interfaces * @{ */ /** * The <code>PPB_MouseCursor</code> allows setting the mouse cursor. */ struct PPB_MouseCursor_1_0 { … }; PPB_MouseCursor; /** * @} */ #endif /* PPAPI_C_PPB_MOUSE_CURSOR_H_ */