1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<amiga-library version='1.0' base='ObjFWBase'>
<include>amiga-library.h</include>
<!-- The following function is only for the linklib. -->
<function name='OFInit' return-type='bool'>
<argument name='version' type='unsigned int' m68k-reg='d0'/>
<argument name='libc' type='struct OFLibC *_Nonnull' m68k-reg='a0'/>
<argument name='RTBase' type='struct Library *_Nonnull' m68k-reg='a0'/>
</function>
<include>OFObject.h</include>
<function name='OFAllocMemory' return-type='void *_Nullable'>
<argument name='count' type='size_t' m68k-reg='d0'/>
<argument name='size' type='size_t' m68k-reg='d1'/>
</function>
<function name='OFAllocZeroedMemory' return-type='void *_Nullable'>
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<amiga-library version='1.0' base='ObjFWBase'>
<include>amiga-library.h</include>
<!-- The following function is only for the linklib. -->
<function name='OFInit' return-type='bool'>
<argument name='version' type='unsigned int' m68k-reg='d0'/>
<argument name='libc' type='struct OFLibC *_Nonnull' m68k-reg='a0'/>
<argument name='RTBase' type='struct Library *_Nonnull' m68k-reg='a1'/>
</function>
<include>OFObject.h</include>
<function name='OFAllocMemory' return-type='void *_Nullable'>
<argument name='count' type='size_t' m68k-reg='d0'/>
<argument name='size' type='size_t' m68k-reg='d1'/>
</function>
<function name='OFAllocZeroedMemory' return-type='void *_Nullable'>
|