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 identical to other flags?