Skip to content

Commit

Permalink
Merge pull request #3839 from flysand7/tlhelp-fix
Browse files Browse the repository at this point in the history
[sys/windows]: Fix the value for TH32CS_SNAPPROCESS constant
  • Loading branch information
gingerBill authored Jun 30, 2024
2 parents efd933e + 561b96b commit 13ace1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/sys/windows/tlhelp.odin
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 13ace1d

Please sign in to comment.