12345678910111213141516171819 |
- #ifndef __Pvd_H_
- #define __Pvd_H_
- #include <main.h>
- typedef struct
- {
- void (*Init)(void);
- }Pvd_t;
- /* extern variables ------------------------------------------------*/
- extern Pvd_t Pvd;
- /* extern function prototypes --------------------------------------*/
- #endif
|