WonxDisplay.h 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. #ifndef _WonxDisplay_h_INCLUDED_
  2. #define _WonxDisplay_h_INCLUDED_
  3. /*****************************************************************************/
  4. /* ここから */
  5. /*****************************************************************************/
  6. #include "XDisplay.h"
  7. #include "WWDisplay.h"
  8. /*****************************************************************************/
  9. /* クラスの定義 */
  10. /*****************************************************************************/
  11. typedef struct _WonxDisplay * WonxDisplay;
  12. XDisplay WonxDisplay_GetXDisplay(WonxDisplay wonx_display);
  13. WWDisplay WonxDisplay_GetWWDisplay(WonxDisplay wonx_display);
  14. WonxDisplay WonxDisplay_Create(int x_width, int x_height,
  15. int ww_lcd_panel_width, int ww_lcd_panel_height,
  16. int ww_screen_width, int ww_screen_height);
  17. int WonxDisplay_Flush(WonxDisplay wonx_display);
  18. /*****************************************************************************/
  19. /* ここまで */
  20. /*****************************************************************************/
  21. #endif
  22. /*****************************************************************************/
  23. /* End of File. */
  24. /*****************************************************************************/