repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Updated PCI IDs to latest snapshot.
[tangerine.git]
/
workbench
/
tools
/
HDToolBox
/
devices.h
blob
53c7c274804148bdc7cbde40ee040cd7fac07656
1
#ifndef DEVICES_H
2
#define DEVICES_H
3
4
#include
"gui.h"
5
6
struct
HDTBDevice
{
7
struct
ListNode listnode
;
8
int
maxunits
;
9
};
10
11
struct
HDTBDevice
*
addDeviceName
(
STRPTR
);
12
void
freeDeviceNode
(
struct
HDTBDevice
*);
13
void
freeDeviceList
(
void
);
14
15
#endif
/* DEVICES_H */
16