
This keeps it out of the taskbar window list. The stacking order is a little gnarly, but it seems to work OK still.
13 lines
194 B
C
13 lines
194 B
C
#pragma once
|
|
|
|
// Keep this in sync with WSWindowType.
|
|
enum class GWindowType {
|
|
Invalid = 0,
|
|
Normal,
|
|
Menu,
|
|
WindowSwitcher,
|
|
Taskbar,
|
|
Tooltip,
|
|
Menubar,
|
|
Launcher,
|
|
};
|