(draft; work in progress)
See also:
- Compilers
- Program analysis:
- Dynamic analysis - instrumentation, translation, sanitizers
(draft; work in progress)
See also:
| # (C) 20013 Minh Triet Pham Tran | |
| # Web: https://gist.github.com/trietptm | |
| # This IDAPython script adds two enum 'eWINDOWS_MESSAGES' and 'eVIRTUALKEYS' | |
| # Virtual-Key Codes (Windows): http://msdn.microsoft.com/en-us/library/windows/desktop/dd375731%28v=vs.85%29.aspx | |
| # Window Notifications (Windows): http://msdn.microsoft.com/en-us/library/windows/desktop/ff468922(v=vs.85).aspx | |
| # http://nah6.com/~itsme/cvs-xdadevtools/ida/idcscripts/wm.idc | |
| import idaapi | |
| id = idc.AddEnum(0, "eWINDOWS_MESSAGES", idaapi.hexflag()); |