Renamed iso.h to iso9660.h.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22921 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include "iso.h"
|
#include "iso9660.h"
|
||||||
|
|
||||||
#include <ByteOrder.h>
|
#include <ByteOrder.h>
|
||||||
#include <Drivers.h>
|
#include <Drivers.h>
|
||||||
|
|||||||
+8
-6
@@ -4,8 +4,8 @@
|
|||||||
*
|
*
|
||||||
* Copyright 2001, pinc Software. All Rights Reserved.
|
* Copyright 2001, pinc Software. All Rights Reserved.
|
||||||
*/
|
*/
|
||||||
#ifndef _ISO_H
|
#ifndef ISO_9660_H
|
||||||
#define _ISO_H
|
#define ISO_9660_H
|
||||||
|
|
||||||
|
|
||||||
#include "lock.h"
|
#include "lock.h"
|
||||||
@@ -224,13 +224,15 @@ typedef struct nspace {
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int ISOMount(const char *path, const int flags, nspace** newVol, bool allow_joliet);
|
int ISOMount(const char *path, const int flags, nspace** newVolume,
|
||||||
int ISOReadDirEnt(nspace* ns, dircookie* cookie, struct dirent* buf, size_t bufsize);
|
bool allowJoliet);
|
||||||
int InitNode(vnode* rec, char* buf, int* bytesRead, uint8 joliet_level);
|
int ISOReadDirEnt(nspace* ns, dircookie* cookie, struct dirent* buffer,
|
||||||
|
size_t bufferSize);
|
||||||
|
int InitNode(vnode* rec, char* buf, int* bytesRead, uint8 jolietLevel);
|
||||||
int ConvertRecDate(ISORecDate* inDate, time_t* outDate);
|
int ConvertRecDate(ISORecDate* inDate, time_t* outDate);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* _ISO_H */
|
#endif /* ISO_9660_H */
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
#include <util/kernel_cpp.h>
|
#include <util/kernel_cpp.h>
|
||||||
|
|
||||||
#include "iso.h"
|
#include "iso9660.h"
|
||||||
#include "iso9660_identify.h"
|
#include "iso9660_identify.h"
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user