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