Assembler Commands
by admin on Aug.25, 2010, under Programming
These are just a few assembler commands I stumbled across, while debugging some applications.
| Command | Description |
|---|---|
| GetDlgItemTextA | Gets the text of a textfield or similar |
| GetDlgItemTextW | Gets the text of a textfield or similar |
| SetDlgItemTextA | Sets the text of a textfield or similar |
| SetWindowTextA | Sets the text of a textfield or other controls |
| SetWindowTextW | Sets the text of a textfield or other controls |
| CreateProcessA | Starts a process |
| ShellExecuteA | Starts a process |
| ShellExecuteExW | Starts a process |
| WinExec | Starts a process |
| MessageBoxExW | Shows a MessageBox |



