Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Enums, prefix the name with the module name and a period.
SHCNE (Enums)
.
Summary
TODO - a short description
C# Definition:
[Flags]
enum SHCNE : uint {
enum SHCNE {
SHCNE_RENAMEITEM = 0x00000001,
SHCNE_CREATE = 0x00000002,
SHCNE_DELETE = 0x00000004,
SHCNE_MKDIR = 0x00000008,
SHCNE_RMDIR = 0x00000010,
SHCNE_MEDIAINSERTED = 0x00000020,
SHCNE_MEDIAREMOVED = 0x00000040,
SHCNE_DRIVEREMOVED = 0x00000080,
SHCNE_DRIVEADD = 0x00000100,
SHCNE_NETSHARE = 0x00000200,
SHCNE_NETUNSHARE = 0x00000400,
SHCNE_ATTRIBUTES = 0x00000800,
SHCNE_UPDATEDIR = 0x00001000,
SHCNE_UPDATEITEM = 0x00002000,
SHCNE_SERVERDISCONNECT = 0x00004000,
SHCNE_UPDATEIMAGE = 0x00008000,
SHCNE_DRIVEADDGUI = 0x00010000,
SHCNE_RENAMEFOLDER = 0x00020000,
SHCNE_FREESPACE = 0x00040000,
SHCNE_EXTENDED_EVENT = 0x04000000,
SHCNE_ASSOCCHANGED = 0x08000000,
SHCNE_DISKEVENTS = 0x0002381F,
SHCNE_GLOBALEVENTS = 0x0C0581E0,
SHCNE_ALLEVENTS = 0x7FFFFFFF,
SHCNE_INTERRUPT = 0x80000000
}
VB Definition:
<Flags> _
Public Enum SHCNE As UInt32
SHCNE_ALLEVENTS = &H7FFFFFFF
SHCNE_ASSOCCHANGED = &H8000000
SHCNE_ATTRIBUTES = &H800
SHCNE_CREATE = 2
SHCNE_DELETE = 4
SHCNE_DISKEVENTS = &H2381F
SHCNE_DRIVEADD = &H100
SHCNE_DRIVEADDGUI = &H10000
SHCNE_DRIVEREMOVED = &H80
SHCNE_EXTENDED_EVENT = &H4000000
SHCNE_FREESPACE = &H40000
SHCNE_GLOBALEVENTS = &HC0581E0
SHCNE_INTERRUPT = &H80000000
SHCNE_MEDIAINSERTED = &H20
SHCNE_MEDIAREMOVED = &H40
SHCNE_MKDIR = 8
SHCNE_NETSHARE = &H200
SHCNE_NETUNSHARE = &H400
SHCNE_RENAMEFOLDER = &H20000
SHCNE_RENAMEITEM = 1
SHCNE_RMDIR = &H10
SHCNE_SERVERDISCONNECT = &H4000
SHCNE_UPDATEDIR = &H1000
SHCNE_UPDATEIMAGE = &H8000
SHCNE_UPDATEITEM = &H2000
Enum SHCNE
TODO
End Enum
Notes:
None.
Documentation
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!