~ubuntu-branches/ubuntu/karmic/isomaster/karmic

« back to all changes in this revision

Viewing changes to bk/bkInternal.h

  • Committer: Bazaar Package Importer
  • Author(s): David Johnson
  • Date: 2007-10-27 22:26:45 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20071027222645-g9i12vhsya2v2tj8
Tags: 1.2-1
* New upstream release
* Fix watch file to handle RCs properly
* Update upstream's e-mail address

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
* Only a max of 64 characters of this will be stored. (plus '\0') */
37
37
#define NCHARS_FILE_ID_MAX_JOLIET 65
38
38
 
 
39
#define NBYTES_FILE_ID_MAX_9660 15 /* 8.3 + ";1" */
 
40
 
39
41
#define BASETW_PTR(item) ((BaseToWrite*)(item))
40
42
#define DIRTW_PTR(item) ((DirToWrite*)(item))
41
43
#define FILETW_PTR(item) ((FileToWrite*)(item))
52
54
 
53
55
typedef struct BaseToWrite
54
56
{
55
 
    char name9660[15]; /* 8.3 + ";1" max */
 
57
    char name9660[NBYTES_FILE_ID_MAX_9660]; /* 8.3 + ";1" max */
56
58
    char nameRock[NCHARS_FILE_ID_MAX_STORE];
57
59
    char nameJoliet[NCHARS_FILE_ID_MAX_JOLIET];
58
60
    unsigned posixFileMode;