123456789101112131415161718192021222324252627282930313233343536373839 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int SND_SYNC = 0;
-
-
-
- public const int SND_ASYNC = 1;
-
-
-
- public const int SND_NODEFAULT = 2;
-
-
-
- public const int SND_MEMORY = 4;
-
-
-
- public const int SND_LOOP = 8;
-
-
-
- public const int SND_NOSTOP = 0x10;
-
-
-
- public const int SND_PURGE = 0x40;
-
-
-
- public const int SND_FILENAME = 0x20000;
- }
- }
|