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
Safer handling of Booleans.
[AROS.git]
/
workbench
/
libs
/
muimaster
/
classes
/
floattext_private.h
blob
c6afa703c38f7f947627181caf93d37385db5531
1
#ifndef _FLOATTEXT_PRIVATE_H_
2
#define _FLOATTEXT_PRIVATE_H_
3
4
#include <exec/types.h>
5
#include <utility/hooks.h>
6
7
struct
Floattext_DATA
8
{
9
struct
Hook construct_hook
;
10
struct
Hook destruct_hook
;
11
STRPTR text
;
12
BOOL justify
;
13
STRPTR skipchars
;
14
ULONG tabsize
;
15
};
16
17
#endif
/* _FLOATTEXT_PRIVATE_H_ */