What is the purpose of Windows style flags like WS_TILED and WS_ICONIC that are just renaming of others? (Windows/C++)
I was looking at the various windows styles flags, and I noticed that a few flags are defined as such: #define WS_TILED WS_OVERLAPPED #define WS_ICONIC WS_MINIMIZE #define WS_SIZEBOX WS_THICKFRAME #define WS_TILEDWINDOW WS_OVERLAPPEDWINDOW What is the purpose of defining new flags that are literally ...