Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: native_client_sdk/src/examples/demo/nacl_io_demo/handlers.h

Issue 306973002: [NaCl SDK] rename nacl_io demo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 #ifndef HANDLERS_H_ 5 #ifndef HANDLERS_H_
6 #define HANDLERS_H_ 6 #define HANDLERS_H_
7 7
8 #include "ppapi/c/pp_var.h" 8 #include "ppapi/c/pp_var.h"
9 9
10 typedef int (*HandleFunc)(struct PP_Var params, 10 typedef int (*HandleFunc)(struct PP_Var params,
(...skipping 21 matching lines...) Expand all
32 int HandleGetaddrinfo(struct PP_Var params, struct PP_Var* out, 32 int HandleGetaddrinfo(struct PP_Var params, struct PP_Var* out,
33 const char** error); 33 const char** error);
34 int HandleGethostbyname(struct PP_Var params, struct PP_Var* out, 34 int HandleGethostbyname(struct PP_Var params, struct PP_Var* out,
35 const char** error); 35 const char** error);
36 int HandleConnect(struct PP_Var params, struct PP_Var* out, const char** error); 36 int HandleConnect(struct PP_Var params, struct PP_Var* out, const char** error);
37 int HandleSend(struct PP_Var params, struct PP_Var* out, const char** error); 37 int HandleSend(struct PP_Var params, struct PP_Var* out, const char** error);
38 int HandleRecv(struct PP_Var params, struct PP_Var* out, const char** error); 38 int HandleRecv(struct PP_Var params, struct PP_Var* out, const char** error);
39 int HandleClose(struct PP_Var params, struct PP_Var* out, const char** error); 39 int HandleClose(struct PP_Var params, struct PP_Var* out, const char** error);
40 40
41 #endif /* HANDLERS_H_ */ 41 #endif /* HANDLERS_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698