Pvd.h 276 B

12345678910111213141516171819
  1. #ifndef __Pvd_H_
  2. #define __Pvd_H_
  3. #include <main.h>
  4. typedef struct
  5. {
  6. void (*Init)(void);
  7. }Pvd_t;
  8. /* extern variables ------------------------------------------------*/
  9. extern Pvd_t Pvd;
  10. /* extern function prototypes --------------------------------------*/
  11. #endif