mirror of
https://github.com/digarok/gsplus.git
synced 2024-12-02 13:51:33 +00:00
53 lines
2.3 KiB
Plaintext
53 lines
2.3 KiB
Plaintext
/*
|
|
GSport - an Apple //gs Emulator
|
|
Copyright (C) 2010 by GSport contributors
|
|
|
|
Based on the KEGS emulator written by and Copyright (C) 2003 Kent Dickey
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by the
|
|
Free Software Foundation; either version 2 of the License, or (at your
|
|
option) any later version.
|
|
|
|
This program 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 General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
/* to_pro.c */
|
|
void flush_disk(ProDisk *disk);
|
|
void close_file(ProDisk *disk);
|
|
ProDisk *allocate_memdisk(char *out_name, int size);
|
|
void format_memdisk(ProDisk *ptr, char *name);
|
|
void disk_write_data(ProDisk *disk, int blk_num, byte *buf, int size);
|
|
void disk_read_data(ProDisk *disk, int blk_num, byte *buf, int size);
|
|
Directory *disk_read_dir(ProDisk *disk, int blk_num);
|
|
void disk_write_dir(ProDisk *disk, int blk_num);
|
|
void create_new_file(ProDisk *disk, int dir_block, int storage_type,
|
|
char *name, int file_type, word32 creation_time, int version,
|
|
int min_version, int access, int aux_type, word32 last_mod, word32 eof);
|
|
int pro_write_file(ProDisk *disk, byte *in_buf, int pos, int size);
|
|
int get_disk_block(ProDisk *disk, int pos, int create);
|
|
void get_new_ind_block(ProDisk *disk);
|
|
void write_ind_block(ProDisk *disk);
|
|
void get_new_master_ind_block(ProDisk *disk);
|
|
void write_master_ind_block(ProDisk *disk);
|
|
int find_next_free_block(ProDisk *disk);
|
|
void set_bitmap_used(byte *ptr, int i);
|
|
void set_bitmap_free(byte *ptr, int i);
|
|
void set_file_entry(File_entry *entry, int storage_type_name_len,
|
|
char *file_name, int file_type, int key_pointer, int blocks_used,
|
|
int eof, word32 creation, int version, int min_version, int access,
|
|
int aux_type, word32 last_mod, int header_pointer);
|
|
void set_l2byte(L2byte *ptr, int val);
|
|
void set_l3byte(L3byte *ptr, int val);
|
|
void set_pro_time(Pro_time *ptr, word32 val);
|
|
int get_l2byte(L2byte *ptr);
|
|
int get_l3byte(L3byte *ptr);
|
|
void inc_l2byte(L2byte *ptr);
|