05.07.2014 Views

here - OSTA - Optical Storage Technology Association

here - OSTA - Optical Storage Technology Association

here - OSTA - Optical Storage Technology Association

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

unicode_t *udfName, /* (Input) Name from UDF volume.*/<br />

int udfLen, /* (Input) Length of UDF Name. */<br />

{<br />

int index, newIndex = 0, needsCRC = FALSE;<br />

int extIndex, newExtIndex = 0, hasExt = FALSE;<br />

#ifdef (OS2 | WIN_95 | WIN_NT)<br />

int trailIndex = 0;<br />

#endif<br />

unsigned short valueCRC;<br />

unicode_t current;<br />

const char hexChar[] = "0123456789ABCDEF";<br />

for (index = 0; index < udfLen; index++)<br />

{<br />

current = udfName[index];<br />

if (IsIllegal(current) || !UnicodeIsPrint(current))<br />

{<br />

needsCRC = TRUE;<br />

/* Replace Illegal and non-displayable chars with underscore. */<br />

current = ILLEGAL_CHAR_MARK;<br />

/* Skip any other illegal or non-displayable characters. */<br />

while(index+1 < udfLen && (IsIllegal(udfName[index+1])<br />

|| !UnicodeIsPrint(udfName[index+1])))<br />

{<br />

index++;<br />

}<br />

}<br />

/* Record position of extension, if one is found. */<br />

if (current == PERIOD && (udfLen - index -1)

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!