15 lines
321 B
C
15 lines
321 B
C
#ifndef D_ClassName_H
|
|
#define D_ClassName_H
|
|
|
|
/**********************************************************
|
|
*
|
|
* ClassName is responsible for ...
|
|
*
|
|
**********************************************************/
|
|
#include <stdint.h>
|
|
|
|
void ClassName_Create(void);
|
|
void ClassName_Destroy(void);
|
|
|
|
#endif /* D_FakeClassName_H */
|