ark
bkRead7x.h
Go to the documentation of this file.00001 /******************************* LICENSE ************************************** 00002 * Any code in this file may be redistributed or modified under the terms of 00003 * the GNU General Public License as published by the Free Software 00004 * Foundation; version 2 of the license. 00005 ****************************** END LICENSE ***********************************/ 00006 00007 /****************************************************************************** 00008 * Author: 00009 * Andrew Smith, http://littlesvr.ca/misc/contactandrew.php 00010 * 00011 * Copyright 2005-2007 Andrew Smith <andrew-smith@mail.ru> 00012 * 00013 * Contributors: 00014 * 00015 ******************************************************************************/ 00016 00017 #ifndef BKREAD7X_H 00018 #define BKREAD7X_H 00019 /******************************************************************************* 00020 * bkRead7x 00021 * functions to read simple variables as described in sections 7.x of iso9660 00022 * not including filenames (7.4, 7.5, 7.6) 00023 * 00024 * if they are stored in both byte orders, the appropriate one is read into 00025 * the parameter but the return is 2x the size of that variable 00026 * 00027 * */ 00028 00029 int read711(int image, unsigned char* value); 00030 int read721(int image, unsigned short* value); 00031 int read731(int image, unsigned* value); 00032 int read733(int image, unsigned* value); 00033 void read733FromCharArray(unsigned char* array, unsigned* value); 00034 #endif
KDE 4.2 API Reference