diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-12-06 03:22:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-06 03:22:32 +0100 |
| commit | b4fb295bb3abefe705a60376cb6d0e4230be74ce (patch) | |
| tree | 808f7567e7c7855e6d3a9d7b0fa038c01c43fc3f | |
| parent | 37ec3d7006b214e298401e3826e136b61ae2e202 (diff) | |
| parent | f7e608628b77b385e578c978634f7eecd52466d4 (diff) | |
Merge pull request #2232 from DragosPopse/master
Added CSIDL_PROFILE in core:sys/windows
| -rw-r--r-- | core/sys/windows/types.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/sys/windows/types.odin b/core/sys/windows/types.odin index 430fbb329..9a2a21070 100644 --- a/core/sys/windows/types.odin +++ b/core/sys/windows/types.odin @@ -1261,6 +1261,7 @@ SWP_ASYNCWINDOWPOS :: 0x4000 // same as SWP_CREATESPB CSIDL_APPDATA :: 0x001a // <user name>\Application Data CSIDL_COMMON_APPDATA :: 0x0023 // All Users\Application Data +CSIDL_PROFILE :: 0x0028 // <user name>\ HWND_TOP :: HWND( uintptr(0)) // 0 HWND_BOTTOM :: HWND( uintptr(1)) // 1 |