/* Copyright 2012 The Chromium Authors * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* From ppb_file_ref.idl modified Wed Jan 29 20:50:29 2014. */ #ifndef PPAPI_C_PPB_FILE_REF_H_ #define PPAPI_C_PPB_FILE_REF_H_ #include "ppapi/c/pp_array_output.h" #include "ppapi/c/pp_bool.h" #include "ppapi/c/pp_completion_callback.h" #include "ppapi/c/pp_file_info.h" #include "ppapi/c/pp_macros.h" #include "ppapi/c/pp_resource.h" #include "ppapi/c/pp_stdint.h" #include "ppapi/c/pp_time.h" #include "ppapi/c/pp_var.h" #define PPB_FILEREF_INTERFACE_1_0 … #define PPB_FILEREF_INTERFACE_1_1 … #define PPB_FILEREF_INTERFACE_1_2 … #define PPB_FILEREF_INTERFACE … /** * @file * This file defines the API to create a file reference or "weak pointer" to a * file in a file system. */ /** * @addtogroup Enums * @{ */ /** * The <code>PP_MakeDirectoryFlags</code> enum contains flags used to control * behavior of <code>PPB_FileRef.MakeDirectory()</code>. */ PP_MakeDirectoryFlags; /** * @} */ /** * @addtogroup Interfaces * @{ */ /** * The <code>PPB_FileRef</code> struct represents a "weak pointer" to a file in * a file system. This struct contains a <code>PP_FileSystemType</code> * identifier and a file path string. */ struct PPB_FileRef_1_2 { … }; PPB_FileRef; struct PPB_FileRef_1_0 { … }; struct PPB_FileRef_1_1 { … }; /** * @} */ #endif /* PPAPI_C_PPB_FILE_REF_H_ */