Search
lxdream.org :: lxdream/src/bootstrap.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/bootstrap.h
changeset 167:71c0cc416a64
prev88:0a1bd43fa4ad
next422:61a0598e07ff
author nkeynes
date Fri Aug 18 09:32:32 2006 +0000 (17 years ago)
permissions -rw-r--r--
last change Add code to check for memory-wraparound on the vertex buffer (it doesn't)
Add in-theory support for re-init (doesn't do anything)
Fix addresses of result and tilematrix
view annotate diff log raw
     1 /**
     2  * $Id: bootstrap.h,v 1.4 2006-06-19 11:00:40 nkeynes Exp $
     3  *
     4  * CD Bootstrap header parsing. Mostly for informational purposes.
     5  *
     6  * Copyright (c) 2005 Nathan Keynes.
     7  *
     8  * This program is free software; you can redistribute it and/or modify
     9  * it under the terms of the GNU General Public License as published by
    10  * the Free Software Foundation; either version 2 of the License, or
    11  * (at your option) any later version.
    12  *
    13  * This program is distributed in the hope that it will be useful,
    14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16  * GNU General Public License for more details.
    17  */
    19 /*
    20  * IP.BIN related code. Ref: http://mc.pp.se/dc/ip0000.bin.html
    21  */
    22 #ifndef dream_bootstrap_H
    23 #define dream_bootstrap_H 1
    25 #ifdef __cplusplus
    26 extern "C" {
    27 #endif
    29 #include "dream.h"
    31 /**
    32  * Dump the bootstrap info to the output log for infomational/debugging
    33  * purposes.
    34  */
    35 void bootstrap_dump(char *data, gboolean detail);
    37 #ifdef __cplusplus
    38 }
    39 #endif
    40 #endif /* !dream_bootstrap_H */
.