Pepper_56_C_interfaces
Pepper_56_C_interfaces
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
ppp_message_handler.h
Go to the documentation of this file.
1 /* Copyright 2014 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 ppp_message_handler.idl modified Thu Oct 20 13:57:04 2016. */
7 
8 #ifndef PPAPI_C_PPP_MESSAGE_HANDLER_H_
9 #define PPAPI_C_PPP_MESSAGE_HANDLER_H_
10 
11 #include "ppapi/c/pp_bool.h"
12 #include "ppapi/c/pp_instance.h"
13 #include "ppapi/c/pp_macros.h"
14 #include "ppapi/c/pp_stdint.h"
15 #include "ppapi/c/pp_var.h"
16 
51  void (*HandleMessage)(PP_Instance instance,
52  void* user_data,
53  const struct PP_Var* message);
74  void* user_data,
75  const struct PP_Var* message,
76  struct PP_Var* response);
87  void (*Destroy)(PP_Instance instance, void* user_data);
88 };
89 
95 #endif /* PPAPI_C_PPP_MESSAGE_HANDLER_H_ */
96 
Definition: ppp_message_handler.h:39
void(* HandleBlockingMessage)(PP_Instance instance, void *user_data, const struct PP_Var *message, struct PP_Var *response)
Definition: ppp_message_handler.h:73
void(* HandleMessage)(PP_Instance instance, void *user_data, const struct PP_Var *message)
Definition: ppp_message_handler.h:51
Definition: pp_var.h:166
int32_t PP_Instance
Definition: pp_instance.h:34
void(* Destroy)(PP_Instance instance, void *user_data)
Definition: ppp_message_handler.h:87