We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello. I compiled windbg extension like a:
cl /c outputcallback.cpp cl /c sync.cpp cl /c tunnel.cpp link outputcallback.obj sync.obj tunnel.obj /out:sync.dll /dll advapi32.lib
Putted sync.dll into windbg\x86\winext\ folder
Loaded extension: .load sync
.load sync
Dll succesfully loaded (I can see it in procexp)
But I don't have any extensions:
!sync
The text was updated successfully, but these errors were encountered:
My mistake! link outputcallback.obj sync.obj tunnel.obj /out:sync.dll /dll advapi32.lib /def:sync.def
link outputcallback.obj sync.obj tunnel.obj /out:sync.dll /dll advapi32.lib /def:sync.def
Thanks a lot!
Sorry, something went wrong.
No branches or pull requests
Hello.
I compiled windbg extension like a:
Putted sync.dll into windbg\x86\winext\ folder
Loaded extension:
.load sync
Dll succesfully loaded (I can see it in procexp)
But I don't have any extensions:
The text was updated successfully, but these errors were encountered: