29 lines
408 B
C
29 lines
408 B
C
|
/*
|
||
|
* @Author: your name
|
||
|
* @Date: 2021-09-22 22:33:24
|
||
|
* @LastEditTime: 2021-09-22 22:52:45
|
||
|
* @LastEditors: Please set LastEditors
|
||
|
* @Description: In User Settings Edit
|
||
|
* @FilePath: /xcmd/extensions/test/test.h
|
||
|
*/
|
||
|
|
||
|
#ifndef TEST_H
|
||
|
#define TEST_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
|
||
|
void test_cmd_init(void);
|
||
|
void test_keys_init(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif /* TEST_H */
|
||
|
|
||
|
|