Commit f0df2b2c authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

Add a PIDL type For Network Provider.

parent 30f84a33
......@@ -88,6 +88,7 @@ LPSTR _dbg_ILGetTextPointer(LPCITEMIDLIST pidl)
case PT_WORKGRP:
case PT_COMP:
case PT_NETWORK:
case PT_NETPROVIDER:
case PT_SHARE:
return (LPSTR)&(pdata->u.network.szNames);
}
......
......@@ -1595,6 +1595,7 @@ LPSTR _ILGetTextPointer(LPCITEMIDLIST pidl)
case PT_WORKGRP:
case PT_COMP:
case PT_NETWORK:
case PT_NETPROVIDER:
case PT_SHARE:
return (LPSTR)&(pdata->u.network.szNames);
}
......
......@@ -62,6 +62,7 @@
* valueW 0x34 file (Unicode file name)
* workgroup 0x41 network (3)
* computer 0x42 network (4)
* net provider 0x46 network
* whole network 0x47 network (5)
* MSITStore 0x61 htmlhlp (7)
* history/favorites 0xb1 file
......@@ -91,6 +92,7 @@
#define PT_VALUE 0x32
#define PT_WORKGRP 0x41
#define PT_COMP 0x42
#define PT_NETPROVIDER 0x46
#define PT_NETWORK 0x47
#define PT_IESPECIAL1 0x61
#define PT_IESPECIAL2 0xb1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment