diff -Pc3prb ram:old/amiga/libiberty.h ./amiga/libiberty.h *** ram:old/amiga/libiberty.h Thu Jan 1 00:00:00 1970 --- ./amiga/libiberty.h Fri Jul 6 18:08:40 2001 *************** *** 0 **** --- 1,180 ---- + /* Function declarations for libiberty. + Written by Cygnus Support, 1994. + + The libiberty library provides a number of functions which are + missing on some operating systems. We do not declare those here, + to avoid conflicts with the system header files on operating + systems that do support those functions. In this file we only + declare those functions which are specific to libiberty. */ + + #ifndef LIBIBERTY_H + #define LIBIBERTY_H + + #ifdef __cplusplus + extern "C" { + #endif + + #include "ansidecl.h" + + /* Build an argument vector from a string. Allocates memory using + malloc. Use freeargv to free the vector. */ + + extern char **buildargv PARAMS ((char *)); + + /* Free a vector returned by buildargv. */ + + extern void freeargv PARAMS ((char **)); + + /* Duplicate an argument vector. Allocates memory using malloc. Use + freeargv to free the vector. */ + + extern char **dupargv PARAMS ((char **)); + + + /* Return the last component of a path name. Note that we can't use a + prototype here because the parameter is declared inconsistently + across different systems, sometimes as "char *" and sometimes as + "const char *" */ + + #if defined (__GNU_LIBRARY__ ) || defined (__linux__) || defined (__FreeBSD__) || defined (__CYGWIN__) || defined (__CYGWIN32__) + extern char *basename PARAMS ((const char *)); + #else + extern char *basename (); + #endif + + /* Concatenate an arbitrary number of strings, up to (char *) NULL. + Allocates memory using xmalloc. */ + + extern char *concat PARAMS ((const char *, ...)); + + /* Check whether two file descriptors refer to the same file. */ + + extern int fdmatch PARAMS ((int fd1, int fd2)); + + /* Get the amount of time the process has run, in microseconds. */ + + extern long get_run_time PARAMS ((void)); + + /* Choose a temporary directory to use for scratch files. */ + + extern char *choose_temp_base PARAMS ((void)); + + /* Allocate memory filled with spaces. Allocates using malloc. */ + + extern const char *spaces PARAMS ((int count)); + + /* Return the maximum error number for which strerror will return a + string. */ + + extern int errno_max PARAMS ((void)); + + /* Return the name of an errno value (e.g., strerrno (EINVAL) returns + "EINVAL"). */ + + extern const char *strerrno PARAMS ((int)); + + /* Given the name of an errno value, return the value. */ + + extern int strtoerrno PARAMS ((const char *)); + + /* ANSI's strerror(), but more robust. */ + + extern char *xstrerror PARAMS ((int)); + + /* Return the maximum signal number for which strsignal will return a + string. */ + + extern int signo_max PARAMS ((void)); + + /* Return a signal message string for a signal number + (e.g., strsignal (SIGHUP) returns something like "Hangup"). */ + /* This is commented out as it can conflict with one in system headers. + We still document its existence though. */ + + /*extern const char *strsignal PARAMS ((int));*/ + + /* Return the name of a signal number (e.g., strsigno (SIGHUP) returns + "SIGHUP"). */ + + extern const char *strsigno PARAMS ((int)); + + /* Given the name of a signal, return its number. */ + + extern int strtosigno PARAMS ((const char *)); + + /* Register a function to be run by xexit. Returns 0 on success. */ + + extern int xatexit PARAMS ((void (*fn) (void))); + + /* Exit, calling all the functions registered with xatexit. */ + + #ifndef __GNUC__ + extern void xexit PARAMS ((int status)); + #else + void xexit PARAMS ((int status)) __attribute__ ((noreturn)); + #endif + + /* Set the program name used by xmalloc. */ + + extern void xmalloc_set_program_name PARAMS ((const char *)); + + /* Allocate memory without fail. If malloc fails, this will print a + message to stderr (using the name set by xmalloc_set_program_name, + if any) and then call xexit. */ + + #ifdef ANSI_PROTOTYPES + /* Get a definition for size_t. */ + #include + #endif + extern PTR xmalloc PARAMS ((size_t)); + + /* Reallocate memory without fail. This works like xmalloc. + + FIXME: We do not declare the parameter types for the same reason as + xmalloc. */ + + extern PTR xrealloc PARAMS ((PTR, size_t)); + + /* Allocate memory without fail and set it to zero. This works like + xmalloc. */ + + extern PTR xcalloc PARAMS ((size_t, size_t)); + + /* Copy a string into a memory buffer without fail. */ + + extern char *xstrdup PARAMS ((const char *)); + + /* hex character manipulation routines */ + + #define _hex_array_size 256 + #define _hex_bad 99 + extern char _hex_value[_hex_array_size]; + extern void hex_init PARAMS ((void)); + #define hex_p(c) (hex_value (c) != _hex_bad) + /* If you change this, note well: Some code relies on side effects in + the argument being performed exactly once. */ + #define hex_value(c) (_hex_value[(unsigned char) (c)]) + + /* Definitions used by the pexecute routine. */ + + #define PEXECUTE_FIRST 1 + #define PEXECUTE_LAST 2 + #define PEXECUTE_ONE (PEXECUTE_FIRST + PEXECUTE_LAST) + #define PEXECUTE_SEARCH 4 + #define PEXECUTE_VERBOSE 8 + + /* Execute a program. */ + + extern int pexecute PARAMS ((const char *, char * const *, const char *, + const char *, char **, char **, int)); + + /* Wait for pexecute to finish. */ + + extern int pwait PARAMS ((int, int *, int)); + + #ifdef __cplusplus + } + #endif + + + #endif /* ! defined (LIBIBERTY_H) */ diff -Pc3prb ram:old/amiga/rint.c ./amiga/rint.c *** ram:old/amiga/rint.c Thu Jan 1 00:00:00 1970 --- ./amiga/rint.c Mon Jul 9 13:12:42 2001 *************** *** 0 **** --- 1,96 ---- + #include + + #if defined(vax)||defined(tahoe) + + // Deal with different ways to concatenate in cpp + # ifdef __STDC__ + # define cat3(a,b,c) a ## b ## c + # else + # define cat3(a,b,c) a/**/b/**/c + # endif + + // Deal with vax/tahoe byte order issues + # ifdef vax + # define cat3t(a,b,c) cat3(a,b,c) + # else + # define cat3t(a,b,c) cat3(a,c,b) + # endif + + # define vccast(name) (*(const double *)(cat3(name,,x))) + + + # define vc(name, value, x1,x2,x3,x4, bexp, xval) \ + const static long cat3(name,,x)[] = {cat3t(0x,x1,x2), cat3t(0x,x3,x4)}; + + # define ic(name, value, bexp, xval) ; + + #else // vax or tahoe + + // Hooray, we have an IEEE machine + # undef vccast + # define vc(name, value, x1,x2,x3,x4, bexp, xval) ; + + # define ic(name, value, bexp, xval) \ + const static double name = value; + + #endif /* defined(vax)||defined(tahoe) */ + + + + vc(L, 4503599627370496.0E0 ,0000,5c00,0000,0000, 55, 1.0) /* 2**55 */ + + ic(L, 4503599627370496.0E0, 52, 1.0) /* 2**52 */ + + #ifdef vccast + #define L vccast(L) + #endif + + + #if defined(vax)||defined(tahoe) /* VAX D format */ + #include + static const unsigned short msign=0x7fff , mexp =0x7f80 ; + static const short prep1=57, gap=7, bias=129 ; + static const double novf=1.7E38, nunf=3.0E-39, zero=0.0 ; + #else /* defined(vax)||defined(tahoe) */ + static const unsigned short msign=0x7fff, mexp =0x7ff0 ; + static const short prep1=54, gap=4, bias=1023 ; + static const double novf=1.7E308, nunf=3.0E-308,zero=0.0; + #endif /* defined(vax)||defined(tahoe) */ + + + double copysign(double x,double y) + { + #ifdef national + unsigned short *px=(unsigned short *) &x+3, + *py=(unsigned short *) &y+3; + #else /* national */ + unsigned short *px=(unsigned short *) &x, + *py=(unsigned short *) &y; + #endif /* national */ + + #if defined(vax)||defined(tahoe) + if ( (*px & mexp) == 0 ) return(x); + #endif /* defined(vax)||defined(tahoe) */ + + *px = ( *px & msign ) | ( *py & ~msign ); + return(x); + } + + + + double rint(double x) + { + double s,t; + const double one = 1.0; + + + if (x != x) /* NaN */ + return (x); + + if (copysign(x,one) >= L) /* already an integer */ + return (x); + s = copysign(L,x); + t = x + s; /* x+s rounded to integer */ + return (t - s); + } + diff -Pc3prb ram:old/amiga/v_snprintf.c ./amiga/v_snprintf.c *** ram:old/amiga/v_snprintf.c Thu Jan 1 00:00:00 1970 --- ./amiga/v_snprintf.c Mon Jul 9 12:56:48 2001 *************** *** 0 **** --- 1,39 ---- + #include + #include + #include + + + int vsnprintf(char *str,size_t n,const char *fmt,va_list ap) + { + int ret; + char buffer[4096]; + + if ((int)n < 1) + return (EOF); + + memset(buffer,0,4096); + ret = vsprintf(buffer, fmt, ap); + if(ret>=n) + { + memcpy(str,buffer,n); + str[n-1]='\0'; + } + else + { + memcpy(str,buffer,ret); + str[ret]='\0'; + } + + return (ret); + } + + + int snprintf(char *s,size_t size,const char *format,...) + { + int retval; + va_list args; + va_start(args,format); + retval=vsnprintf(s,size,format,args); + va_end(args); + return retval; + } \ No newline at end of file diff -Pc3prb ram:old/amiga/xmalloc.c ./amiga/xmalloc.c *** ram:old/amiga/xmalloc.c Thu Jan 1 00:00:00 1970 --- ./amiga/xmalloc.c Mon Jul 9 13:08:36 2001 *************** *** 0 **** --- 1,87 ---- + /* memory allocation routines with error checking. + Copyright 1989, 90, 91, 92, 93, 94 Free Software Foundation, Inc. + + This file is part of the libiberty library. + Libiberty is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + Libiberty is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with libiberty; see the file COPYING.LIB. If + not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ + + #include "ansidecl.h" + #include "libiberty.h" + + #include + + #ifdef __STDC__ + #include + #else + #define size_t unsigned long + #define ptrdiff_t long + #endif + + + /* For systems with larger pointers than ints, these must be declared. */ + PTR malloc PARAMS ((size_t)); + + + /* The program name if set. */ + static const char *name = ""; + + #ifdef HAVE_SBRK + /* The initial sbrk, set when the program name is set. Not used for win32 + ports other than cygwin32. */ + static char *first_break = NULL; + #endif /* HAVE_SBRK */ + + + void (*_xexit_cleanup) PARAMS ((void)); + + void xexit (int code) + { + if (_xexit_cleanup != NULL) + (*_xexit_cleanup) (); + exit (code); + } + + + PTR xmalloc (size_t size) + { + PTR newmem; + + if (size == 0) + size = 1; + newmem = malloc (size); + if (!newmem) + { + #ifdef HAVE_SBRK + extern char **environ; + size_t allocated; + + if (first_break != NULL) + allocated = (char *) sbrk (0) - first_break; + else + allocated = (char *) sbrk (0) - (char *) &environ; + fprintf (stderr, + "\n%s%sCan not allocate %lu bytes after allocating %lu bytes\n", + name, *name ? ": " : "", + (unsigned long) size, (unsigned long) allocated); + #else /* HAVE_SBRK */ + fprintf (stderr, + "\n%s%sCan not allocate %lu bytes\n", + name, *name ? ": " : "", + (unsigned long) size); + #endif /* HAVE_SBRK */ + xexit (1); + } + return (newmem); + } diff -Pc3prb ram:old/inttypes.h ./inttypes.h *** ram:old/inttypes.h Thu Jan 1 00:00:00 1970 --- ./inttypes.h Mon Jul 2 18:31:12 2001 *************** *** 0 **** --- 1,5 ---- + #define uint64_t long long + #define uint32_t unsigned int + #define uint16_t unsigned short + #define uint8_t unsigned char + #define int16_t short Only in ram:old: poptparse.c diff -Pc3prb ram:old/vcd_types.h ./vcd_types.h *** ram:old/vcd_types.h Sat Jun 30 21:27:18 2001 --- ./vcd_types.h Mon Jul 9 13:14:46 2001 *************** *** 27,47 **** # include #elif defined(HAVE_INTTYPES_H) # include ! #elif defined(__CYGWIN__) # include typedef u_int8_t uint8_t; typedef u_int16_t uint16_t; typedef u_int32_t uint32_t; typedef u_int64_t uint64_t; - #elif defined(AMIGA_COMPILE) - typedef unsigned char uint8_t; - typedef signed char int8_t; - typedef unsigned short uint16_t; - typedef signed short int16_t; - typedef unsigned int uint32_t; - typedef signed int int32_t; - typedef unsigned long long uint64_t; - typedef signed long long int64_t; #else /* warning ISO/IEC 9899:1999 was missing and even */ /* fixme */ --- 27,38 ---- # include #elif defined(HAVE_INTTYPES_H) # include ! #elif defined(__CYGWIN__) || defined(AMIGA_COMPILE) # include typedef u_int8_t uint8_t; typedef u_int16_t uint16_t; typedef u_int32_t uint32_t; typedef u_int64_t uint64_t; #else /* warning ISO/IEC 9899:1999 was missing and even */ /* fixme */ Binary files ram:old/vcd_types.h.info and ./vcd_types.h.info differ diff -Pc3prb ram:old/vcdimager.c ./vcdimager.c *** ram:old/vcdimager.c Mon Jun 11 14:33:44 2001 --- ./vcdimager.c Mon Jul 2 18:31:08 2001 *************** *** 31,37 **** --- 31,39 ---- #include #include #include + #ifndef AMIGA_COMPILE #include + #endif #include #include diff -Pc3prb ram:old/vcdimager.¶ ./vcdimager.¶ *** ram:old/vcdimager.¶ Thu Jan 1 00:00:00 1970 --- ./vcdimager.¶ Wed Jul 11 18:06:02 2001 *************** *** 0 **** --- 1,702 ---- + Storm Shell Project (0018) + Settings (Start) + C/C++ Environment + "StormC:include" + 0 + "vcdimager:" + 0 + "vcdimager:frontends/cli/popt" + 0 + "vcdimager:vcd7/libvcd" + 0 + Includepath (End) + 0 "" 80 + 1 "objects_debug" + 1 0 "makelog.txt" + "" + 0 + 0 0 + 0 + 0 0 + C/C++ Preprozessor + 0 "NDEBUG" "" + 0 + Defines (End) + 1 1 1 + 0 0 + C/C++ Options + 0 0 0 2 1 0 0 0 1 0 0 0 0 0 0 + 0 0 0 + 0 + 0 1 0 + C/C++ Optimizer + 9 + C/C++ Warnings + 1 1 1 1 1 1 0 1 + 0 0 + GCC Options (1) + 0 "NDEBUG" "" + 0 + 1 "AMIGA_COMPILE" "" + 0 + 1 "inline" "__inline" + 0 + 1 "EXIT_FAILURE" "33" + 0 + 1 "EXIT_SUCCESS" "0" + 0 + 1 "EMPTY_ARRAY_SIZE" "0" + 0 + 1 "VERSION" "\"0.7.7\"" + 0 + 1 "HOST_ARCH" "\"Amiga\"" + 0 + 1 "WORDS_BIGENDIAN" "1" + 0 + 1 "HAVE_SNPRINTF" "1" + 0 + 1 "HAVE_VSNPRINTF" "1" + 0 + 1 "STDC_HEADERS" "1" + 0 + 1 "_GNU_SOURCE" "" + 0 + Defines (End) + 1 0 0 1 0 + 1 0 0 0 0 1 0 + 0 2 1 0 0 + 0 0 0 0 1 0 0 + 5 1 1 0 + 0 "" + 2 0 1 0 + 1 0 0 1 0 1 0 1 0 1 + 1 1 0 1 0 1 + 0 1 1 1 1 0 0 + 1 0 0 0 0 + Assembler + 0 "" + 0 "CON://640/200/Storm Assembler/AUTO/WAIT/SCREEN StormScreen" + 0 0 + 0 1 60 0 1 0 0 20 0 + Sets (End) + 0 1 0 0 0 2 1 0 0 + 1 1 1 1 0 0 0 0 0 + 1 0 + 0 0 0 0 0 + Linker + 0 0 "PROGDIR:startup.o" 0 0 1 0 1 0 0 + "StormC:lib/" 0 "StormC:lib/logfile" 0 0 0 + 0 "_WizardSurface" + 0 0 50 0 50 0 50 0 0 + 0 0 0 0 0 0 0 0 + Run + 30 "" "" "" 0 + "" + + 1 "CON://400/180/Storm Console/AUTO/WAIT/SCREEN StormScreen" "RAM:Output" "RAM:Input" + 1 0 + 0 0 0 "" "" + Settings (End) + Storm Shell Project (Custom Sections End) + Section + 1000 1 100 + "Sources: frontends" + 1 + "frontends" + 0 1 1 0 + 4 + File + 1000 "frontends/cli/vcdimager.c" + "frontends/cli/vcdimager.c" + Storm Shell Project (Dependencies) + "objects_debug/vcdimager.o" "objects_debug/vcdimager.debug" + "" + 1 1 + File + 1000 "frontends/cli/popt/findme.c" + "frontends/cli/popt/findme.c" + "frontends/cli/popt/findme.h" + Storm Shell Project (Dependencies) + "objects_debug/findme.o" "objects_debug/findme.debug" + "" + 1 1 + File + 1000 "frontends/cli/popt/popt.c" + "frontends/cli/popt/popt.c" + "frontends/cli/popt/findme.h" + "frontends/cli/popt/popt.h" + "frontends/cli/popt/poptint.h" + Storm Shell Project (Dependencies) + "objects_debug/popt.o" "objects_debug/popt.debug" + "" + 1 1 + File + 1000 "frontends/cli/popt/poptconfig.c" + "frontends/cli/popt/poptconfig.c" + "frontends/cli/popt/popt.h" + "frontends/cli/popt/poptint.h" + Storm Shell Project (Dependencies) + "objects_debug/poptconfig.o" "objects_debug/poptconfig.debug" + "" + 1 1 + File + 1000 "frontends/cli/popt/popthelp.c" + "frontends/cli/popt/popthelp.c" + "frontends/cli/popt/popt.h" + "frontends/cli/popt/poptint.h" + Storm Shell Project (Dependencies) + "objects_debug/popthelp.o" "objects_debug/popthelp.debug" + "" + 1 1 + File + 1000 "frontends/cli/popt/poptparse.c" + "frontends/cli/popt/poptparse.c" + "frontends/cli/popt/popt.h" + Storm Shell Project (Dependencies) + "objects_debug/poptparse.o" "objects_debug/poptparse.debug" + "" + 1 1 + Section + 1002 1 100 + "Sources: libvcd" + 1 + "libvcd" + 0 1 1 0 + 4 + File + 1002 "libvcd/vcd.c" + "libvcd/vcd.c" + "libvcd/vcd.h" + "libvcd/vcd_obj.h" + "libvcd/vcd_data_structures.h" + "libvcd/vcd_types.h" + "libvcd/vcd_mpeg_stream.h" + "libvcd/vcd_iso9660.h" + "libvcd/vcd_files.h" + "libvcd/vcd_salloc.h" + "libvcd/vcd_directory.h" + "libvcd/vcd_files_private.h" + "libvcd/vcd_cd_sector.h" + "libvcd/vcd_logging.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd.o" "objects_debug/vcd.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_bytesex.c" + "libvcd/vcd_bytesex.c" + "libvcd/vcd_bytesex.h" + "libvcd/vcd_types.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_bytesex.o" "objects_debug/vcd_bytesex.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_cd_sector.c" + "libvcd/vcd_cd_sector.c" + "libvcd/vcd_types.h" + "libvcd/vcd_cd_sector.h" + "libvcd/vcd_cd_sector_private.h" + "libvcd/vcd_bytesex.h" + "libvcd/vcd_salloc.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_cd_sector.o" "objects_debug/vcd_cd_sector.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_data_structures.c" + "libvcd/vcd_data_structures.c" + "libvcd/vcd_data_structures.h" + "libvcd/vcd_types.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_data_structures.o" "objects_debug/vcd_data_structures.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_directory.c" + "libvcd/vcd_directory.c" + "libvcd/vcd_types.h" + "libvcd/vcd_data_structures.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_directory.o" "objects_debug/vcd_directory.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_files.c" + "libvcd/vcd_files.c" + "libvcd/vcd_files.h" + "libvcd/vcd.h" + "libvcd/vcd_files_private.h" + "libvcd/vcd_bytesex.h" + "libvcd/vcd_types.h" + "libvcd/vcd_obj.h" + "libvcd/vcd_data_structures.h" + "libvcd/vcd_mpeg_stream.h" + "libvcd/vcd_iso9660.h" + "libvcd/vcd_salloc.h" + "libvcd/vcd_directory.h" + "libvcd/vcd_logging.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_files.o" "objects_debug/vcd_files.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_image.c" + "libvcd/vcd_image.c" + "libvcd/vcd_types.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_image.o" "objects_debug/vcd_image.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_image_bincue.c" + "libvcd/vcd_image_bincue.c" + Storm Shell Project (Dependencies) + "objects_debug/vcd_image_bincue.o" "objects_debug/vcd_image_bincue.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_image_cdrdao.c" + "libvcd/vcd_image_cdrdao.c" + Storm Shell Project (Dependencies) + "objects_debug/vcd_image_cdrdao.o" "objects_debug/vcd_image_cdrdao.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_image_fs.c" + "libvcd/vcd_image_fs.c" + "libvcd/vcd_types.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_image_fs.o" "objects_debug/vcd_image_fs.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_image_linuxcd.c" + "libvcd/vcd_image_linuxcd.c" + "libvcd/vcd_types.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_image_linuxcd.o" "objects_debug/vcd_image_linuxcd.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_image_nrg.c" + "libvcd/vcd_image_nrg.c" + Storm Shell Project (Dependencies) + "objects_debug/vcd_image_nrg.o" "objects_debug/vcd_image_nrg.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_iso9660.c" + "libvcd/vcd_iso9660.c" + "libvcd/vcd_iso9660.h" + "libvcd/vcd_types.h" + "libvcd/vcd_iso9660_private.h" + "libvcd/vcd_bytesex.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_iso9660.o" "objects_debug/vcd_iso9660.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_logging.c" + "libvcd/vcd_logging.c" + "libvcd/vcd_logging.h" + "libvcd/vcd_types.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_logging.o" "objects_debug/vcd_logging.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_mpeg.c" + "libvcd/vcd_mpeg.c" + "libvcd/vcd_stream.h" + "libvcd/vcd_data_structures.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_mpeg.o" "objects_debug/vcd_mpeg.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_mpeg_stream.c" + "libvcd/vcd_mpeg_stream.c" + "libvcd/vcd_types.h" + "libvcd/vcd_stream.h" + "libvcd/vcd_data_structures.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_mpeg_stream.o" "objects_debug/vcd_mpeg_stream.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_pbc.c" + "libvcd/vcd_pbc.c" + "libvcd/vcd_types.h" + "libvcd/vcd_iso9660.h" + "libvcd/vcd_files.h" + "libvcd/vcd_salloc.h" + "libvcd/vcd_directory.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_pbc.o" "objects_debug/vcd_pbc.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_salloc.c" + "libvcd/vcd_salloc.c" + "libvcd/vcd_salloc.h" + "libvcd/vcd_types.h" + "libvcd/vcd_logging.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_salloc.o" "objects_debug/vcd_salloc.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_stream.c" + "libvcd/vcd_stream.c" + "libvcd/vcd_stream.h" + "libvcd/vcd_logging.h" + "libvcd/vcd_types.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_stream.o" "objects_debug/vcd_stream.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_stream_stdio.c" + "libvcd/vcd_stream_stdio.c" + "libvcd/vcd_stream_stdio.h" + "libvcd/vcd_stream.h" + "libvcd/vcd_logging.h" + "libvcd/vcd_types.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "objects_debug/vcd_stream_stdio.o" "objects_debug/vcd_stream_stdio.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_util.c" + "libvcd/vcd_util.c" + Storm Shell Project (Dependencies) + "objects_debug/vcd_util.o" "objects_debug/vcd_util.debug" + "" + 1 1 + Section + 1005 1 100 + "Sources: amiga" + 1 + "amiga" + 0 1 1 0 + 4 + File + 1005 "amiga/rint.c" + Storm Shell Project (Dependencies) + "objects_debug/rint.o" "objects_debug/rint.debug" + "" + 1 1 + File + 1005 "amiga/v_snprintf.c" + Storm Shell Project (Dependencies) + "objects_debug/v_snprintf.o" "objects_debug/v_snprintf.debug" + "" + 1 1 + File + 1005 "amiga/xmalloc.c" + Storm Shell Project (Dependencies) + "objects_debug/xmalloc.o" "objects_debug/xmalloc.debug" + "" + 1 1 + Section + 1001 1 95 + "Headers: frontends" + 2 + "frontends" + 0 1 1 0 + 2 + File + 1001 "frontends/cli/popt/findme.h" + "frontends/cli/popt/findme.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1001 "frontends/cli/popt/popt.h" + "frontends/cli/popt/popt.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1001 "frontends/cli/popt/poptint.h" + "frontends/cli/popt/poptint.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + Section + 1003 1 95 + "Headers: libvcd" + 2 + "libvcd" + 0 1 1 0 + 2 + File + 1003 "libvcd/vcd.h" + "libvcd/vcd.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_assert.h" + "libvcd/vcd_assert.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_bitvec.h" + "libvcd/vcd_bitvec.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_bytesex.h" + "libvcd/vcd_bytesex.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_cd_sector.h" + "libvcd/vcd_cd_sector.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_cd_sector_private.h" + "libvcd/vcd_cd_sector_private.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_data_structures.h" + "libvcd/vcd_data_structures.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_dict.h" + "libvcd/vcd_dict.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_directory.h" + "libvcd/vcd_directory.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_files.h" + "libvcd/vcd_files.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_files_private.h" + "libvcd/vcd_files_private.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_image.h" + "libvcd/vcd_image.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_image_bincue.h" + "libvcd/vcd_image_bincue.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_image_cdrdao.h" + "libvcd/vcd_image_cdrdao.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_image_fs.h" + "libvcd/vcd_image_fs.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_image_linuxcd.h" + "libvcd/vcd_image_linuxcd.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_image_nrg.h" + "libvcd/vcd_image_nrg.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_iso9660.h" + "libvcd/vcd_iso9660.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_iso9660_private.h" + "libvcd/vcd_iso9660_private.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_logging.h" + "libvcd/vcd_logging.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_mpeg.h" + "libvcd/vcd_mpeg.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_mpeg_stream.h" + "libvcd/vcd_mpeg_stream.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_obj.h" + "libvcd/vcd_obj.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_pbc.h" + "libvcd/vcd_pbc.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_salloc.h" + "libvcd/vcd_salloc.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_stream.h" + "libvcd/vcd_stream.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_stream_stdio.h" + "libvcd/vcd_stream_stdio.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_types.h" + "libvcd/vcd_types.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_util.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_xa.h" + "libvcd/vcd_xa.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + Section + 1004 1 95 + "Headers: amiga" + 2 + "amiga" + 0 1 1 0 + 2 + File + 1004 "amiga/libiberty.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + Section + 10 1 40 + 0 0 0 0 + 7 + File + 10 "vcdimager" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + Section + 5 1 -50 + 0 0 0 0 + 7 + File + 5 "storm.lib" + "storm.lib" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 5 "amiga.lib" + "amiga.lib" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 5 "debug.lib" + "debug.lib" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + Storm Shell Project (End) diff -Pc3prb ram:old/vcdimager_ppc.¶ ./vcdimager_ppc.¶ *** ram:old/vcdimager_ppc.¶ Thu Jan 1 00:00:00 1970 --- ./vcdimager_ppc.¶ Wed Jul 11 14:03:18 2001 *************** *** 0 **** --- 1,707 ---- + Storm Shell Project (0018) + Settings (Start) + C/C++ Environment + "StormC:include" + 0 + "vcdimager:" + 0 + "vcdimager:frontends/cli/popt" + 0 + Includepath (End) + 0 "" 80 + 1 "objects_debug_ppc" + 1 1 "makelog.txt" + "" + 0 + 0 0 + 0 + 0 0 + C/C++ Preprozessor + 0 "NDEBUG" "" + 0 + Defines (End) + 1 1 1 + 0 0 + C/C++ Options + 0 0 0 2 1 0 0 0 1 0 0 0 0 0 0 + 0 0 0 + 0 + 0 1 0 + C/C++ Optimizer + 9 + C/C++ Warnings + 1 1 1 1 1 1 0 1 + 0 0 + GCC Options (1) + 0 "NDEBUG" "" + 0 + 1 "AMIGA_COMPILE" "" + 0 + 1 "inline" "__inline" + 0 + 1 "EXIT_FAILURE" "33" + 0 + 1 "EXIT_SUCCESS" "0" + 0 + 1 "EMPTY_ARRAY_SIZE" "0" + 0 + 1 "VERSION" "\"0.7.7\"" + 0 + 1 "HOST_ARCH" "\"Amiga\"" + 0 + 1 "WORDS_BIGENDIAN" "1" + 0 + 1 "HAVE_SNPRINTF" "1" + 0 + 1 "HAVE_VSNPRINTF" "1" + 0 + 1 "STDC_HEADERS" "1" + 0 + 1 "_GNU_SOURCE" "" + 0 + Defines (End) + 1 0 0 1 0 + 1 0 0 0 0 1 0 + 0 2 0 0 0 + 0 0 0 0 1 0 0 + 9 1 1 5 + 0 "" + 2 0 1 0 + 1 0 0 1 0 1 0 1 0 1 + 1 1 0 1 0 1 + 0 1 1 1 1 0 0 + 1 0 0 0 0 + Assembler + 0 "" + 0 "CON://640/200/Storm Assembler/AUTO/WAIT/SCREEN StormScreen" + 0 0 + 0 1 60 0 1 0 0 20 0 + Sets (End) + 0 1 0 0 0 2 1 0 0 + 1 1 1 1 0 0 0 0 0 + 1 0 + 0 0 0 0 0 + Linker + 0 0 "PROGDIR:startup.o" 0 0 1 0 1 0 0 + "StormC:lib/" 0 "StormC:lib/logfile" 0 0 0 + 0 "_WizardSurface" + 0 0 50 0 50 0 50 0 0 + 0 0 0 0 0 0 0 0 + Run + 30 "" "" "" 0 + "" + + 1 "CON://400/180/Storm Console/AUTO/WAIT/SCREEN StormScreen" "RAM:Output" "RAM:Input" + 1 0 + 0 0 0 "" "" + Settings (End) + Storm Shell Project (Custom Sections End) + Section + 1000 1 100 + "Sources: frontends" + 1 + "frontends" + 0 1 1 0 + 4 + File + 1000 "frontends/cli/vcdimager.c" + "frontends/cli/vcdimager.c" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcdimager.o" "objects_debug_ppc/vcdimager.debug" + "" + 1 1 + File + 1000 "frontends/cli/popt/findme.c" + "frontends/cli/popt/findme.c" + "frontends/cli/popt/findme.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/findme.o" "objects_debug_ppc/findme.debug" + "" + 1 1 + File + 1000 "frontends/cli/popt/popt.c" + "frontends/cli/popt/popt.c" + "frontends/cli/popt/findme.h" + "frontends/cli/popt/popt.h" + "frontends/cli/popt/poptint.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/popt.o" "objects_debug_ppc/popt.debug" + "" + 1 1 + File + 1000 "frontends/cli/popt/poptconfig.c" + "frontends/cli/popt/poptconfig.c" + "frontends/cli/popt/popt.h" + "frontends/cli/popt/poptint.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/poptconfig.o" "objects_debug_ppc/poptconfig.debug" + "" + 1 1 + File + 1000 "frontends/cli/popt/popthelp.c" + "frontends/cli/popt/popthelp.c" + "frontends/cli/popt/popt.h" + "frontends/cli/popt/poptint.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/popthelp.o" "objects_debug_ppc/popthelp.debug" + "" + 1 1 + File + 1000 "frontends/cli/popt/poptparse.c" + "frontends/cli/popt/poptparse.c" + "frontends/cli/popt/popt.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/poptparse.o" "objects_debug_ppc/poptparse.debug" + "" + 1 1 + Section + 1002 1 100 + "Sources: libvcd" + 1 + "libvcd" + 0 1 1 0 + 4 + File + 1002 "libvcd/vcd.c" + "libvcd/vcd.c" + "libvcd/vcd.h" + "libvcd/vcd_obj.h" + "libvcd/vcd_data_structures.h" + "libvcd/vcd_types.h" + "libvcd/vcd_mpeg_stream.h" + "libvcd/vcd_iso9660.h" + "libvcd/vcd_files.h" + "libvcd/vcd_salloc.h" + "libvcd/vcd_directory.h" + "libvcd/vcd_files_private.h" + "libvcd/vcd_cd_sector.h" + "libvcd/vcd_logging.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd.o" "objects_debug_ppc/vcd.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_bytesex.c" + "libvcd/vcd_bytesex.c" + "libvcd/vcd_bytesex.h" + "libvcd/vcd_types.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_bytesex.o" "objects_debug_ppc/vcd_bytesex.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_cd_sector.c" + "libvcd/vcd_cd_sector.c" + "libvcd/vcd_types.h" + "libvcd/vcd_cd_sector.h" + "libvcd/vcd_cd_sector_private.h" + "libvcd/vcd_bytesex.h" + "libvcd/vcd_salloc.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_cd_sector.o" "objects_debug_ppc/vcd_cd_sector.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_data_structures.c" + "libvcd/vcd_data_structures.c" + "libvcd/vcd_data_structures.h" + "libvcd/vcd_types.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_data_structures.o" "objects_debug_ppc/vcd_data_structures.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_directory.c" + "libvcd/vcd_directory.c" + "libvcd/vcd_types.h" + "libvcd/vcd_data_structures.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_directory.o" "objects_debug_ppc/vcd_directory.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_files.c" + "libvcd/vcd_files.c" + "libvcd/vcd_files.h" + "libvcd/vcd.h" + "libvcd/vcd_files_private.h" + "libvcd/vcd_bytesex.h" + "libvcd/vcd_types.h" + "libvcd/vcd_obj.h" + "libvcd/vcd_data_structures.h" + "libvcd/vcd_mpeg_stream.h" + "libvcd/vcd_iso9660.h" + "libvcd/vcd_salloc.h" + "libvcd/vcd_directory.h" + "libvcd/vcd_logging.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_files.o" "objects_debug_ppc/vcd_files.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_image.c" + "libvcd/vcd_image.c" + "libvcd/vcd_types.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_image.o" "objects_debug_ppc/vcd_image.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_image_bincue.c" + "libvcd/vcd_image_bincue.c" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_image_bincue.o" "objects_debug_ppc/vcd_image_bincue.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_image_cdrdao.c" + "libvcd/vcd_image_cdrdao.c" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_image_cdrdao.o" "objects_debug_ppc/vcd_image_cdrdao.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_image_fs.c" + "libvcd/vcd_image_fs.c" + "libvcd/vcd_types.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_image_fs.o" "objects_debug_ppc/vcd_image_fs.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_image_linuxcd.c" + "libvcd/vcd_image_linuxcd.c" + "libvcd/vcd_types.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_image_linuxcd.o" "objects_debug_ppc/vcd_image_linuxcd.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_image_nrg.c" + "libvcd/vcd_image_nrg.c" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_image_nrg.o" "objects_debug_ppc/vcd_image_nrg.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_iso9660.c" + "libvcd/vcd_iso9660.c" + "libvcd/vcd_iso9660.h" + "libvcd/vcd_types.h" + "libvcd/vcd_iso9660_private.h" + "libvcd/vcd_bytesex.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_iso9660.o" "objects_debug_ppc/vcd_iso9660.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_logging.c" + "libvcd/vcd_logging.c" + "libvcd/vcd_logging.h" + "libvcd/vcd_types.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_logging.o" "objects_debug_ppc/vcd_logging.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_mpeg.c" + "libvcd/vcd_mpeg.c" + "libvcd/vcd_stream.h" + "libvcd/vcd_data_structures.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_mpeg.o" "objects_debug_ppc/vcd_mpeg.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_mpeg_stream.c" + "libvcd/vcd_mpeg_stream.c" + "libvcd/vcd_types.h" + "libvcd/vcd_stream.h" + "libvcd/vcd_data_structures.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_mpeg_stream.o" "objects_debug_ppc/vcd_mpeg_stream.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_pbc.c" + "libvcd/vcd_pbc.c" + "libvcd/vcd_types.h" + "libvcd/vcd_iso9660.h" + "libvcd/vcd_files.h" + "libvcd/vcd_salloc.h" + "libvcd/vcd_directory.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_pbc.o" "objects_debug_ppc/vcd_pbc.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_salloc.c" + "libvcd/vcd_salloc.c" + "libvcd/vcd_salloc.h" + "libvcd/vcd_types.h" + "libvcd/vcd_logging.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_salloc.o" "objects_debug_ppc/vcd_salloc.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_stream.c" + "libvcd/vcd_stream.c" + "libvcd/vcd_stream.h" + "libvcd/vcd_logging.h" + "libvcd/vcd_types.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_stream.o" "objects_debug_ppc/vcd_stream.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_stream_stdio.c" + "libvcd/vcd_stream_stdio.c" + "libvcd/vcd_stream_stdio.h" + "libvcd/vcd_stream.h" + "libvcd/vcd_logging.h" + "libvcd/vcd_types.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_stream_stdio.o" "objects_debug_ppc/vcd_stream_stdio.debug" + "" + 1 1 + File + 1002 "libvcd/vcd_util.c" + "libvcd/vcd_util.c" + "libvcd/vcd_types.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/vcd_util.o" "objects_debug_ppc/vcd_util.debug" + "" + 1 1 + Section + 1007 1 100 + "Sources: amiga" + 1 + "amiga" + 0 1 1 0 + 4 + File + 1007 "amiga/v_snprintf.c" + "amiga/v_snprintf.c" + Storm Shell Project (Dependencies) + "objects_debug_ppc/v_snprintf.o" "objects_debug_ppc/v_snprintf.debug" + "" + 1 1 + File + 1007 "amiga/xmalloc.c" + "amiga/xmalloc.c" + "amiga/libiberty.h" + Storm Shell Project (Dependencies) + "objects_debug_ppc/xmalloc.o" "objects_debug_ppc/xmalloc.debug" + "" + 1 1 + Section + 1001 1 95 + "Headers: frontends" + 2 + "frontends" + 0 1 1 0 + 2 + File + 1001 "frontends/cli/popt/findme.h" + "frontends/cli/popt/findme.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1001 "frontends/cli/popt/popt.h" + "frontends/cli/popt/popt.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1001 "frontends/cli/popt/poptint.h" + "frontends/cli/popt/poptint.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + Section + 1003 0 95 + "Headers: libvcd" + 2 + "libvcd" + 0 1 1 0 + 2 + File + 1003 "libvcd/vcd.h" + "libvcd/vcd.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_assert.h" + "libvcd/vcd_assert.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_bitvec.h" + "libvcd/vcd_bitvec.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_bytesex.h" + "libvcd/vcd_bytesex.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_cd_sector.h" + "libvcd/vcd_cd_sector.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_cd_sector_private.h" + "libvcd/vcd_cd_sector_private.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_data_structures.h" + "libvcd/vcd_data_structures.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_dict.h" + "libvcd/vcd_dict.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_directory.h" + "libvcd/vcd_directory.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_files.h" + "libvcd/vcd_files.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_files_private.h" + "libvcd/vcd_files_private.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_image.h" + "libvcd/vcd_image.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_image_bincue.h" + "libvcd/vcd_image_bincue.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_image_cdrdao.h" + "libvcd/vcd_image_cdrdao.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_image_fs.h" + "libvcd/vcd_image_fs.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_image_linuxcd.h" + "libvcd/vcd_image_linuxcd.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_image_nrg.h" + "libvcd/vcd_image_nrg.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_iso9660.h" + "libvcd/vcd_iso9660.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_iso9660_private.h" + "libvcd/vcd_iso9660_private.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_logging.h" + "libvcd/vcd_logging.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_mpeg.h" + "libvcd/vcd_mpeg.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_mpeg_stream.h" + "libvcd/vcd_mpeg_stream.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_obj.h" + "libvcd/vcd_obj.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_pbc.h" + "libvcd/vcd_pbc.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_salloc.h" + "libvcd/vcd_salloc.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_stream.h" + "libvcd/vcd_stream.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_stream_stdio.h" + "libvcd/vcd_stream_stdio.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_types.h" + "libvcd/vcd_types.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_util.h" + "libvcd/vcd_util.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 1003 "libvcd/vcd_xa.h" + "libvcd/vcd_xa.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + Section + 1006 1 95 + "Headers: amiga" + 2 + "amiga" + 0 1 1 0 + 2 + File + 1006 "amiga/libiberty.h" + "amiga/libiberty.h" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + Section + 10 1 40 + 0 0 0 0 + 7 + File + 10 "vcdimager_ppc" + "vcdimager_ppc" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + Section + 5 1 -50 + 0 0 0 0 + 7 + File + 5 "storm.lib" + "storm.lib" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 5 "amiga.lib" + "amiga.lib" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 5 "debug.lib" + "debug.lib" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + File + 5 "amiga603.lib" + "amiga603.lib" + Storm Shell Project (Dependencies) + "" "" + "" + 0 0 + Storm Shell Project (End)