repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added basic implementation of destroying a GPT table: just delete the
[AROS.git]
/
tools
/
dtdesc
/
dtdesc.h
blob
bfb62b9e3e13cd1735e187919a8cd76d22250acf
1
#ifndef DTDESC_H
2
#define DTDESC_H 1
3
4
/*
5
Copyright © 2000, The AROS Development Team. All rights reserved.
6
$Id$
7
8
Desc: DataTypesDescriptorCreator
9
Lang: English.
10
*/
11
12
/*
13
* includes
14
*/
15
16
#include <c_iff.h>
17
18
/*
19
* structs
20
*/
21
22
struct
DataTypeHeader
23
{
24
uint8_t
*
dth_Name
;
25
uint8_t
*
dth_BaseName
;
26
uint8_t
*
dth_Pattern
;
27
uint16_t
*
dth_Mask
;
28
uint32_t
dth_GroupID
;
29
uint32_t
dth_ID
;
30
uint16_t
dth_MaskLen
;
31
uint16_t
dth_Pad
;
32
uint16_t
dth_Flags
;
33
uint16_t
dth_Priority
;
34
};
35
36
struct
FileDataTypeHeader
37
{
38
uint32_t
dth_Name
;
39
uint32_t
dth_BaseName
;
40
uint32_t
dth_Pattern
;
41
uint32_t
dth_Mask
;
42
uint32_t
dth_GroupID
;
43
uint32_t
dth_ID
;
44
uint16_t
dth_MaskLen
;
45
uint16_t
dth_Pad
;
46
uint16_t
dth_Flags
;
47
uint16_t
dth_Priority
;
48
};
49
50
#endif
/* DTDESC_H */