done flow learn skill

This commit is contained in:
VDH
2026-01-12 19:07:37 +07:00
parent 59f70616e9
commit 61f4660dba
26 changed files with 1633 additions and 339 deletions
+19
View File
@@ -0,0 +1,19 @@
/*
* Dialog Box Command IDs
* Converted from Windows API definitions
*/
public static class DialogBoxCommandIDs
{
public const int IDOK = 1;
public const int IDCANCEL = 2;
public const int IDABORT = 3;
public const int IDRETRY = 4;
public const int IDIGNORE = 5;
public const int IDYES = 6;
public const int IDNO = 7;
public const int IDCLOSE = 8;
public const int IDHELP = 9;
public const int IDTRYAGAIN = 10;
public const int IDCONTINUE = 11;
public const int IDTIMEOUT = 32000;
}