示例#1
0
 /** Create() creates a file system object of the given type.
  *
  * @param[in] instance A <code>PP_Instance</code> identifying the instance
  * with the file.
  * @param[in] type A file system type as defined by
  * <code>PP_FileSystemType</code> enum (except PP_FILESYSTEMTYPE_ISOLATED,
  * which is currently not supported).
  * @return A <code>PP_Resource</code> corresponding to a file system if
  * successful.
  */
 public static PPResource Create(PPInstance instance,
                                 PPFileSystemType type)
 {
     return(_Create(instance, type));
 }
示例#2
0
 extern static PPResource _Create(PPInstance instance,
                                  PPFileSystemType type);