WWLCDPanelP.h 1.2 KB

1234567891011121314151617181920212223242526272829
  1. #ifndef _WWLCDPanelP_h_INCLUDED_
  2. #define _WWLCDPanelP_h_INCLUDED_
  3. /*****************************************************************************/
  4. /* ここから */
  5. /*****************************************************************************/
  6. #include "WWLCDPanel.h"
  7. /*****************************************************************************/
  8. /* クラスの定義 */
  9. /*****************************************************************************/
  10. typedef struct _WWLCDPanel {
  11. int width;
  12. int height;
  13. /* 16色のカラー情報.1バイトで2ピクセル分の情報を持つ */
  14. unsigned char * pixel;
  15. } _WWLCDPanel;
  16. /*****************************************************************************/
  17. /* ここまで */
  18. /*****************************************************************************/
  19. #endif
  20. /*****************************************************************************/
  21. /* End of File. */
  22. /*****************************************************************************/