Since there is a possibility that the Error () function will collide with libwonx.a when linking, It changed to Wonx_Error (). Added bios_exit (). sprite_set_char, sprite_get_char, palette number minus 8 Fixed bug that was not specified. font_set_monodata (), font_set_colordata (), font_get_data (), disp.c, The arguments of screen_set_char (), screen_get_char (), sprite_set_data () Changed from void * to appropriate type. Sample program and attached SpeedMac. I added a document. Version 0.3 beta - from wonx-b03.tar.gz
20 lines
422 B
C
20 lines
422 B
C
/* configure.h for configuration of wonx */
|
||
|
||
#ifndef _WONX_system_configure_h_INCLUDED_
|
||
#define _WONX_system_configure_h_INCLUDED_
|
||
|
||
/*
|
||
* 以下を有効にすると,ushort, ulong が typedef される.
|
||
*/
|
||
|
||
#if 0 /* ushort は,普通は標準で /usr/include/sys/types.h で定義されている */
|
||
#define TYPEDEF_USHORT
|
||
#endif
|
||
#if 1
|
||
#define TYPEDEF_ULONG
|
||
#endif
|
||
|
||
#endif /* _WONX_system_configure_h_INCLUDED_ */
|
||
|
||
/* End of system_configure.h */
|