Related questions
Visual C++ equivalent of GCC's __attribute__ ((__packed__))
For some compilers, there is a packing specifier for structs, for example ::
RealView ARM compiler has "__packed"
Gnu C Compiler has "__attribute__ ((__packed__))"
Visual C++ has no equivalent, it only has the "#pragma pack(1)"
I need something that I can …
Best way to strip off symbols
Last week I released the Linux and windows version of an application.
And after the release we realized that the symbols were not stripped off, and my manager thinks (and I disagree) that it might allow the user to understand …
'uint32_t' identifier not found error
I'm porting code from Linux C to Visual C++ for windows.
Visual C++ doesn't know #include <stdint.h> so I commented it out.
Later, I found a lot of those 'uint32_t': identifier not found errors. How can …