Skip to content

Commit 82e85d3

Browse files
committed
Fix SymSetOptions signature on dbghelp!
1 parent 0a8928f commit 82e85d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dbghelp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ const SYMOPT_DEFERRED_LOADS: DWORD = 0x00000004;
158158
dbghelp! {
159159
extern "system" {
160160
fn SymGetOptions() -> DWORD;
161-
fn SymSetOptions(options: DWORD) -> ();
161+
fn SymSetOptions(options: DWORD) -> DWORD;
162162
fn SymInitializeW(
163163
handle: HANDLE,
164164
path: PCWSTR,

0 commit comments

Comments
 (0)