diff options
| author | gingerBill <bill@gingerbill.org> | 2021-08-31 22:21:13 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-08-31 22:21:13 +0100 |
| commit | 251da264ed6e0f039931683c7b0d4b97e88c8d99 (patch) | |
| tree | c7a9a088477d2452c2cf850458c62d994a211df6 /core/sys/windows/bcrypt.odin | |
| parent | b176af27427a6c39448a71a8023e4a9877f0a51c (diff) | |
Remove unneeded semicolons from the core library
Diffstat (limited to 'core/sys/windows/bcrypt.odin')
| -rw-r--r-- | core/sys/windows/bcrypt.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/windows/bcrypt.odin b/core/sys/windows/bcrypt.odin index bfb75d259..ed28d5b7f 100644 --- a/core/sys/windows/bcrypt.odin +++ b/core/sys/windows/bcrypt.odin @@ -3,7 +3,7 @@ package sys_windows foreign import bcrypt "system:Bcrypt.lib" -BCRYPT_USE_SYSTEM_PREFERRED_RNG: DWORD : 0x00000002; +BCRYPT_USE_SYSTEM_PREFERRED_RNG: DWORD : 0x00000002 @(default_calling_convention="stdcall") foreign bcrypt { |