> For the complete documentation index, see [llms.txt](https://book.ice-wzl.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://book.ice-wzl.xyz/windows-malware-development/processes-threads-handles/message-box-example-basic.md).

# Message Box Example (Basic)

```
#include <windows.h>

int main(void){
    
    MessageBoxW(
        NULL,
        L"My first message box!".
        L"My title",  
        MB_YESNOCANCEL | MB_ICONEXCLAMATION   //the options the message box will have + icon    
    );
    return EXIT_SUCCESS 
}
```

hThread --> h is the Hungarian notation which windows uses
