WWTimerP.h 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. #ifndef _WWTimerP_h_INCLUDED_
  2. #define _WWTimerP_h_INCLUDED_
  3. /*****************************************************************************/
  4. /* ここから */
  5. /*****************************************************************************/
  6. #include "WWTimer.h"
  7. /*****************************************************************************/
  8. /* クラスの定義 */
  9. /*****************************************************************************/
  10. typedef struct _WWTimer {
  11. int timer_on; /* タイマの状態 */
  12. int auto_preset; /* オートプリセット */
  13. int preset_counter; /* プリセット・カウンタ */
  14. int counter; /* カウンタ */
  15. } _WWTimer;
  16. /*****************************************************************************/
  17. /* ここまで */
  18. /*****************************************************************************/
  19. #endif
  20. /*****************************************************************************/
  21. /* End of File. */
  22. /*****************************************************************************/