mirror of
https://github.com/ksherlock/profuse.git
synced 2024-11-16 16:04:55 +00:00
31 lines
434 B
C
31 lines
434 B
C
|
/*
|
||
|
* DiskCopy42.h
|
||
|
* profuse
|
||
|
*
|
||
|
* Created by Kelvin Sherlock on 1/4/09.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __DISKCOPY42__
|
||
|
#define __DISKCOPY42__
|
||
|
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
struct DiskCopy42
|
||
|
{
|
||
|
bool Load(const uint8_t *buffer);
|
||
|
|
||
|
char disk_name[64];
|
||
|
uint32_t data_size;
|
||
|
uint32_t tag_size;
|
||
|
uint32_t data_checksum;
|
||
|
uint32_t tag_checksum;
|
||
|
unsigned disk_format;
|
||
|
unsigned format_byte;
|
||
|
unsigned private_word;
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|