WonXText.h 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. #ifndef _WonXText_h_INCLUDED_
  2. #define _WonXText_h_INCLUDED_
  3. /*****************************************************************************/
  4. /* ここから */
  5. /*****************************************************************************/
  6. #include "WWText.h"
  7. #include "WWScreen.h"
  8. #include "WWPalette.h"
  9. /*****************************************************************************/
  10. /* クラスの定義 */
  11. /*****************************************************************************/
  12. typedef struct _WonXText * WonXText;
  13. WWText WonXText_GetWWText(WonXText wonx_text);
  14. WWText WonXText_SetWWText(WonXText wonx_text, WWText ww_text);
  15. WonXText WonXText_Create(WWScreen screen, int x, int y, int width, int height,
  16. WWPalette palette);
  17. WonXText WonXText_Destroy(WonXText wonx_text);
  18. /*****************************************************************************/
  19. /* ここまで */
  20. /*****************************************************************************/
  21. #endif
  22. /*****************************************************************************/
  23. /* End of File. */
  24. /*****************************************************************************/