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.
SHChangeNotifyFlags (Enums)
.
Summary
TODO - a short description
C# Definition:
enum SHChangeNotifyFlags : uint {
SHCNF_IDLIST = 0x0000,
SHCNF_PATHA = 0x0001,
SHCNF_PRINTERA = 0x0002,
SHCNF_DWORD = 0x0003,
SHCNF_PATHW = 0x0005,
SHCNF_PRINTERW = 0x0006,
SHCNF_TYPE = 0x00FF,
SHCNF_FLUSH = 0x1000,
SHCNF_FLUSHNOWAIT = 0x2000,
SHCNF_PATH = SHCNF_PATHW,
SHCNF_PRINTER = SHCNF_PRINTERW
}
VB Definition:
Private Enum SHChangeNotifyFlags As UInt32
SHCNF_DWORD = 3
SHCNF_FLUSH = &H1000
SHCNF_FLUSHNOWAIT = &H2000
SHCNF_IDLIST = 0
SHCNF_PATH = 5
SHCNF_PATHA = 1
SHCNF_PATHW = 5
SHCNF_PRINTER = 6
SHCNF_PRINTERA = 2
SHCNF_PRINTERW = 6
SHCNF_TYPE = &HFF
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!