- move pointer left padding macro into single header file. - move utf8 fopen into single header but not finished. - add testbench for pointer left padding macro. - add system pointer size detector according to new migrated features requested.
24 lines
689 B
C++
24 lines
689 B
C++
// It is by design that no pragma once or #if to prevent deplicated including.
|
|
// Because this header is the part of wrapper, not a real header.
|
|
// #pragma once
|
|
|
|
#include "../macro/os_detector.hpp"
|
|
|
|
#if defined(YYCC_OS_WINDOWS)
|
|
|
|
// Windows also will generate following macros which may cause
|
|
// the function sign is different in Windows and other platforms.
|
|
// So we simply remove them.
|
|
// At the same time, because `#undef` will not throw error if there are no matched macro,
|
|
// we can simply use `#undef` to remove them directly.
|
|
#undef GetObject
|
|
#undef GetClassName
|
|
#undef LoadImage
|
|
#undef GetTempPath
|
|
#undef GetModuleFileName
|
|
#undef CopyFile
|
|
#undef MoveFile
|
|
#undef DeleteFile
|
|
|
|
#endif
|