Skip to content

Commit

Permalink
Add missing return type of LibC.VirtualQuery
Browse files Browse the repository at this point in the history
  • Loading branch information
HertzDevil committed Sep 25, 2024
1 parent b679b56 commit 422b2bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib_c/x86_64-windows-msvc/c/memoryapi.cr
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ lib LibC

fun VirtualFree(lpAddress : Void*, dwSize : SizeT, dwFreeType : DWORD) : BOOL
fun VirtualProtect(lpAddress : Void*, dwSize : SizeT, flNewProtect : DWORD, lpfOldProtect : DWORD*) : BOOL
fun VirtualQuery(lpAddress : Void*, lpBuffer : MEMORY_BASIC_INFORMATION*, dwLength : SizeT)
fun VirtualQuery(lpAddress : Void*, lpBuffer : MEMORY_BASIC_INFORMATION*, dwLength : SizeT) : SizeT
end

0 comments on commit 422b2bd

Please sign in to comment.