2025-05-27 15:46:31 +08:00

12 lines
312 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef AIKIT_COMMON_H
#define AIKIT_COMMON_H
typedef enum AIKIT_DATA_PTR_TYPE_E {
AIKIT_DATA_PTR_MEM = 0, // 数据内存指针
AIKIT_DATA_PTR_FILE = 1, // 数据文件指针FILE指针
AIKIT_DATA_PTR_PATH = 2 // 数据文件路径指针
} AIKIT_DATA_PTR_TYPE;
#endif //AIKIT_COMMON_H