// cl -EHsc hello.cpp #include #include int main( ) { std::cout << "Hello, World!\n"; std::cout << "SHFILEOPSTRUCTA: " << sizeof(SHFILEOPSTRUCTA) << "\n"; std::cout << "SHFILEOPSTRUCTW: " << sizeof(SHFILEOPSTRUCTW) << "\n"; std::cout << "HWND: " << sizeof(HWND) << "\n"; std::cout << "UINT: " << sizeof(UINT) << "\n"; std::cout << "LPCTSTR: " << sizeof(LPCTSTR) << "\n"; std::cout << "LPCWSTR: " << sizeof(LPCWSTR) << "\n"; std::cout << "FILEOP_FLAGS: " << sizeof(FILEOP_FLAGS) << "\n"; std::cout << "BOOL: " << sizeof(BOOL) << "\n"; std::cout << "LPVOID: " << sizeof(LPVOID) << "\n"; return 0; }