Pepper_56_C_interfaces
Pepper_56_C_interfaces
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
ppb_mouse_lock.h
Go to the documentation of this file.
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2  * Use of this source code is governed by a BSD-style license that can be
3  * found in the LICENSE file.
4  */
5 
6 /* From ppb_mouse_lock.idl modified Thu Oct 20 13:57:04 2016. */
7 
8 #ifndef PPAPI_C_PPB_MOUSE_LOCK_H_
9 #define PPAPI_C_PPB_MOUSE_LOCK_H_
10 
12 #include "ppapi/c/pp_instance.h"
13 #include "ppapi/c/pp_macros.h"
14 #include "ppapi/c/pp_stdint.h"
15 
16 #define PPB_MOUSELOCK_INTERFACE_1_0 "PPB_MouseLock;1.0"
17 #define PPB_MOUSELOCK_INTERFACE PPB_MOUSELOCK_INTERFACE_1_0
18 
62  int32_t (*LockMouse)(PP_Instance instance,
63  struct PP_CompletionCallback callback);
73  void (*UnlockMouse)(PP_Instance instance);
74 };
75 
76 typedef struct PPB_MouseLock_1_0 PPB_MouseLock;
81 #endif /* PPAPI_C_PPB_MOUSE_LOCK_H_ */
82 
Definition: ppb_mouse_lock.h:37
int32_t PP_Instance
Definition: pp_instance.h:34
Definition: pp_completion_callback.h:139
void(* UnlockMouse)(PP_Instance instance)
Definition: ppb_mouse_lock.h:73
int32_t(* LockMouse)(PP_Instance instance, struct PP_CompletionCallback callback)
Definition: ppb_mouse_lock.h:62