| Index: native_client_sdk/src/examples/demo/nacl_io/handlers.h
|
| diff --git a/native_client_sdk/src/examples/demo/nacl_io/handlers.h b/native_client_sdk/src/examples/demo/nacl_io/handlers.h
|
| deleted file mode 100644
|
| index 532914f10d62b4f86dc03d4ccc51ffb3a4727fd8..0000000000000000000000000000000000000000
|
| --- a/native_client_sdk/src/examples/demo/nacl_io/handlers.h
|
| +++ /dev/null
|
| @@ -1,41 +0,0 @@
|
| -/* Copyright (c) 2012 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. */
|
| -
|
| -#ifndef HANDLERS_H_
|
| -#define HANDLERS_H_
|
| -
|
| -#include "ppapi/c/pp_var.h"
|
| -
|
| -typedef int (*HandleFunc)(struct PP_Var params,
|
| - struct PP_Var* out_var,
|
| - const char** error);
|
| -
|
| -int HandleFopen(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -int HandleFwrite(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -int HandleFread(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -int HandleFseek(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -int HandleFclose(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -int HandleFflush(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -int HandleStat(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -
|
| -int HandleOpendir(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -int HandleReaddir(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -int HandleClosedir(struct PP_Var params, struct PP_Var* out,
|
| - const char** error);
|
| -
|
| -int HandleMkdir(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -int HandleRmdir(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -int HandleChdir(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -int HandleGetcwd(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -
|
| -int HandleGetaddrinfo(struct PP_Var params, struct PP_Var* out,
|
| - const char** error);
|
| -int HandleGethostbyname(struct PP_Var params, struct PP_Var* out,
|
| - const char** error);
|
| -int HandleConnect(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -int HandleSend(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -int HandleRecv(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -int HandleClose(struct PP_Var params, struct PP_Var* out, const char** error);
|
| -
|
| -#endif /* HANDLERS_H_ */
|
|
|