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. /*****************************************************************************/