WonXDisplay.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef _WonXDisplay_h_INCLUDED_
  2. #define _WonXDisplay_h_INCLUDED_
  3. /*****************************************************************************/
  4. /* ここから */
  5. /*****************************************************************************/
  6. /*****************************************************************************/
  7. /* クラスの定義 */
  8. /*****************************************************************************/
  9. typedef struct _WonXDisplay * WonXDisplay;
  10. /*****************************************************************************/
  11. /* ヘッダファイルのインクルード */
  12. /*****************************************************************************/
  13. #include "XDisplay.h"
  14. #include "WWDisplay.h"
  15. /*****************************************************************************/
  16. /* メンバ関数の宣言 */
  17. /*****************************************************************************/
  18. XDisplay WonXDisplay_GetXDisplay(WonXDisplay wonx_display);
  19. WWDisplay WonXDisplay_GetWWDisplay(WonXDisplay wonx_display);
  20. WonXDisplay WonXDisplay_Create(int x_width, int x_height,
  21. int ww_lcd_panel_width, int ww_lcd_panel_height,
  22. int ww_screen_width, int ww_screen_height);
  23. int WonXDisplay_PrintData(WonXDisplay wonx_display);
  24. int WonXDisplay_Sync(WonXDisplay wonx_display);
  25. int WonXDisplay_Flush(WonXDisplay wonx_display);
  26. /*****************************************************************************/
  27. /* ここまで */
  28. /*****************************************************************************/
  29. #endif
  30. /*****************************************************************************/
  31. /* End of File. */
  32. /*****************************************************************************/