#pragma once // defines a lot of annoying things like ERROR and DELETE, which // we use as names in enum classes, so we wrap with this header // that undoes some of these annoying things. #include #ifdef PHOSG_WINDOWS #define WIN32_LEAN_AND_MEAN #include #ifdef DELETE #undef DELETE #endif #ifdef ERROR #undef ERROR #endif #ifdef PASSTHROUGH #undef PASSTHROUGH #endif #endif