MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / MsgBoxResultString

Function MsgBoxResultString

source/script2.cpp:4901–4917  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4899
4900
4901LPTSTR MsgBoxResultString(int aResult)
4902{
4903 switch (aResult)
4904 {
4905 case IDYES: return _T("Yes");
4906 case IDNO: return _T("No");
4907 case IDOK: return _T("OK");
4908 case IDCANCEL: return _T("Cancel");
4909 case IDABORT: return _T("Abort");
4910 case IDIGNORE: return _T("Ignore");
4911 case IDRETRY: return _T("Retry");
4912 case IDCONTINUE: return _T("Continue");
4913 case IDTRYAGAIN: return _T("TryAgain");
4914 case AHK_TIMEOUT: return _T("Timeout");
4915 default: return NULL;
4916 }
4917}
4918
4919
4920BIF_DECL(BIF_MsgBox)

Callers 1

BIF_DECLFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected