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:
Axel Dörfler 2007-11-13 14:57:11 +00:00
parent 5b2c5d03e8
commit dc9a52b917
3 changed files with 11 additions and 9 deletions

View File

@ -6,7 +6,7 @@
*/
#include "iso.h"
#include "iso9660.h"
#include <ByteOrder.h>
#include <Drivers.h>

View File

@ -4,8 +4,8 @@
*
* Copyright 2001, pinc Software. All Rights Reserved.
*/
#ifndef _ISO_H
#define _ISO_H
#ifndef ISO_9660_H
#define ISO_9660_H
#include "lock.h"
@ -224,13 +224,15 @@ typedef struct nspace {
extern "C" {
#endif
int ISOMount(const char *path, const int flags, nspace** newVol, bool allow_joliet);
int ISOReadDirEnt(nspace* ns, dircookie* cookie, struct dirent* buf, size_t bufsize);
int InitNode(vnode* rec, char* buf, int* bytesRead, uint8 joliet_level);
int ISOMount(const char *path, const int flags, nspace** newVolume,
bool allowJoliet);
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);
#ifdef __cplusplus
}
#endif
#endif /* _ISO_H */
#endif /* ISO_9660_H */

View File

@ -32,7 +32,7 @@
#include <util/kernel_cpp.h>
#include "iso.h"
#include "iso9660.h"
#include "iso9660_identify.h"