| /* Copyright (c) 2011 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 ppp_mouse_lock.idl modified Fri Oct 14 19:00:26 2011. */ |
| |
| #ifndef PPAPI_C_PPP_MOUSE_LOCK_H_ |
| #define PPAPI_C_PPP_MOUSE_LOCK_H_ |
| |
| #include "ppapi/c/pp_instance.h" |
| #include "ppapi/c/pp_macros.h" |
| #include "ppapi/c/pp_stdint.h" |
| |
| #define PPP_MOUSELOCK_INTERFACE_1_0 "PPP_MouseLock;1.0" |
| #define PPP_MOUSELOCK_INTERFACE PPP_MOUSELOCK_INTERFACE_1_0 |
| |
| /** |
| * @file |
| * This file defines the <code>PPP_MouseLock</code> interface. |
| */ |
| |
| |
| /** |
| * @addtogroup Interfaces |
| * @{ |
| */ |
| /** |
| * The <code>PPP_MouseLock</code> interface contains pointers to functions |
| * that you must implement to receive mouse lock events from the browser. |
| */ |
| struct PPP_MouseLock { |
| /** |
| * Called when the instance loses the mouse lock, e.g. because the user |
| * pressed the ESC key. |
| * |
| * @param[in] instance A <code>PP_Instance</code> identifying one instance |
| * of a module. |
| */ |
| void (*MouseLockLost)(PP_Instance instance); |
| }; |
| /** |
| * @} |
| */ |
| |
| #endif /* PPAPI_C_PPP_MOUSE_LOCK_H_ */ |
| |