diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-06-30 20:15:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-30 20:15:33 +0100 |
| commit | 13ace1dac9fbbd936907a5fc08604a6a24ef3d83 (patch) | |
| tree | f0b5ae3224bd4e3149acc611d16cf75d2bb5ff96 | |
| parent | efd933e22148d36f67db757a0010f42bf5bee205 (diff) | |
| parent | 561b96b20dc87f6483e7820b336e313de954967b (diff) | |
Merge pull request #3839 from flysand7/tlhelp-fix
[sys/windows]: Fix the value for TH32CS_SNAPPROCESS constant
| -rw-r--r-- | core/sys/windows/tlhelp.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/windows/tlhelp.odin b/core/sys/windows/tlhelp.odin index 259b3de55..7e224dd05 100644 --- a/core/sys/windows/tlhelp.odin +++ b/core/sys/windows/tlhelp.odin @@ -29,7 +29,7 @@ MAX_MODULE_NAME32 :: 255 TH32CS_INHERIT :: 0x80000000 TH32CS_SNAPHEAPLIST :: 0x00000001 -TH32CS_SNAPPROCESS :: 0x00000001 +TH32CS_SNAPPROCESS :: 0x00000002 TH32CS_SNAPTHREAD :: 0x00000004 TH32CS_SNAPMODULE :: 0x00000008 TH32CS_SNAPMODULE32 :: 0x00000010 |