Skip to content

Instantly share code, notes, and snippets.

@Ana06
Last active June 3, 2020 17:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ana06/0f35460e793db6637bcf75145135b4ec to your computer and use it in GitHub Desktop.
Save Ana06/0f35460e793db6637bcf75145135b4ec to your computer and use it in GitHub Desktop.
Enable IDA external help: With Ctrl-F1 IDA shows the man page of the Windows API function or assembly x86 instruction that matches the word under the cursor 🎉
// With Ctrl-F1 IDA shows the man page of the Windows API function or assembly
// instruction that matches the word under the cursor
// Steps to set it up:
// 1. Install WinHlp32.exe: https://www.microsoft.com/en-us/download/details.aspx?id=91
// 2. Download the desired .hlp file. For example:
// - x86 instructions help file: http://pedram.redhive.com/openrce/opcodes.hlp
// - win32.hlp: https://www.modula2.org/win32tutor/references.php
// Add to C:\Program Files\IDA Pro 7.4\cfg\idagui.cfg:
HELPFILE = "C:\\Program Files\\IDA Pro 7.4\\win32.hlp"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment