怎样理解C语言define和typedef的使用?
/常用数据类型定义*/ #define u8 uint8_t #define u16 uint16_t #define u32 uint32_ttypedef unsigned char uint8_ttypedef unsigned short uint16_…
cl编译得到的dll无法通过rundll32.exe调用
源程序(两个): test.def: EXPORTS add test.c: #include <stdio.h> extern int add(){ printf("hello world\n") return 0 } 编译 cl test.c t…
- 共 1 页
- 1