您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
249 B

  1. #ifndef SUB_H
  2. #define SUB_H
  3. #ifdef _DLLAPI
  4. #define DLLAPI _declspec(dllexport)
  5. #else
  6. #define DLLAPI _declspec(dllimport)
  7. #endif
  8. //int DLLAPI sub(int a, int b);
  9. bool DLLAPI Sub(int a, int b, int *d);
  10. //char DLLAPI Sub(int a, int b, char *d);
  11. #endif