12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using System;
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int DS_ABSALIGN = 0x01;
-
-
-
- public const int DS_SYSMODAL = 0x02;
-
-
-
- public const int DS_LOCALEDIT = 0x20;
-
-
-
- public const int DS_SETFONT = 0x40;
-
-
-
- public const int DS_MODALFRAME = 0x80;
-
-
-
- public const int DS_NOIDLEMSG = 0x100;
-
-
-
- public const int DS_SETFOREGROUND = 0x200;
-
-
-
- public const int DS_3DLOOK = 0x0004;
-
-
-
- public const int DS_FIXEDSYS = 0x0008;
-
-
-
- public const int DS_NOFAILCREATE = 0x0010;
-
-
-
- public const int DS_CONTROL = 0x0400;
-
-
-
- public const int DS_CENTER = 0x0800;
-
-
-
- public const int DS_CENTERMOUSE = 0x1000;
-
-
-
- public const int DS_CONTEXTHELP = 0x2000;
-
-
-
- public const int DS_SHELLFONT = DS_SETFONT | DS_FIXEDSYS;
-
-
-
- public const int DS_USEPIXELS = 0x8000;
- }
- }
|