I imported some code into my project, but there is a line:
typedef signed char byte;
But the byte
has been typedef in rpcndr.h
. There are many codes using this type, so just changing the name is a difficult thing. I'm wondering if there's an easy way to solve such redefinition?
P.S. My code is running on Windows and all codes do not has a namespace, so add namespaces is equal to change type name.