20 lines
534 B
C#
20 lines
534 B
C#
/*
|
|
* 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;
|
|
}
|