forked from keirf/flashfloppy-hxc-file-selector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcortex_cfg_file.h
More file actions
69 lines (63 loc) · 1.95 KB
/
cortex_cfg_file.h
File metadata and controls
69 lines (63 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
//
// Copyright (C) 2009-2017 Jean-François DEL NERO
//
// This file is part of the HxCFloppyEmulator file selector.
//
// HxCFloppyEmulator file selector may be used and distributed without restriction
// provided that this copyright statement is not removed from the file and that any
// derivative work contains the original copyright notice and the associated
// disclaimer.
//
// HxCFloppyEmulator file selector 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.
//
// HxCFloppyEmulator file selector 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 HxCFloppyEmulator file selector; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
//
*/
#ifdef WIN32
#pragma pack(1)
#endif
typedef struct Cortex_cfgfile_
{
uint8_t undef[22];
uint16_t number_of_slot;
uint16_t slot_index;
uint16_t update_cnt;
#ifndef WIN32
}__attribute__((__packed__)) Cortex_cfgfile;
#else
}Cortex_cfgfile;
#endif
struct Cortex_ShortDirectoryEntry {
unsigned char name[12];
uint8_t attributes;
uint32_t firstCluster;
uint32_t size;
unsigned char longName[41]; // boolean
#ifndef WIN32
}__attribute__((__packed__));
#else
};
#endif
extern struct Cortex_DirectoryEntry Cortex_directoryEntry;
typedef struct Cortex_disk_in_drive_
{
struct Cortex_ShortDirectoryEntry DirEnt;
#ifndef WIN32
}__attribute__((__packed__)) Cortex_disk_in_drive;
#else
}Cortex_disk_in_drive;
#endif
#ifdef WIN32
#pragma pack()
#endif