DBG: SafeSymGetOptions
This commit is contained in:
parent
2071aff446
commit
19265d66c8
|
@ -40,6 +40,13 @@ SafeSymSetOptions(
|
|||
EXCLUSIVE_ACQUIRE(LockSym);
|
||||
return SymSetOptions(SymOptions);
|
||||
}
|
||||
DWORD
|
||||
SafeSymGetOptions(
|
||||
)
|
||||
{
|
||||
EXCLUSIVE_ACQUIRE(LockSym);
|
||||
return SymGetOptions();
|
||||
}
|
||||
BOOL
|
||||
SafeSymInitializeW(
|
||||
__in HANDLE hProcess,
|
||||
|
|
|
@ -28,6 +28,9 @@ DWORD
|
|||
SafeSymSetOptions(
|
||||
__in DWORD SymOptions
|
||||
);
|
||||
DWORD
|
||||
SafeSymGetOptions(
|
||||
);
|
||||
BOOL
|
||||
SafeSymInitializeW(
|
||||
__in HANDLE hProcess,
|
||||
|
|
Loading…
Reference in New Issue