www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - How do I use WINAPI's ITaskbarList3?

reply Nieto <neto.ribeiro email.com> writes:
How do I use other than Windows.h with D?

For Windows.h I know it's core.sys.windows.windows but what's the 
module for Shobjidl.h for example? is this supported natively? (i 
tried core.sys.windows.shobjidl actually) but not so, what 
alternative are there?
Oct 13 2017
parent rikki cattermole <rikki cattermole.co.nz> writes:
On 13/10/2017 4:01 PM, Nieto wrote:
 How do I use other than Windows.h with D?
 
 For Windows.h I know it's core.sys.windows.windows but what's the module 
 for Shobjidl.h for example? is this supported natively? (i tried 
 core.sys.windows.shobjidl actually) but not so, what alternative are there?
All: https://github.com/dlang/druntime/tree/master/src/core/sys/windows Pretty much nothing regarding COM is in there. https://github.com/dlang/druntime/search?p=1&q=IUnknown&type=&utf8=%E2%9C%93 You will need to create the bindings yourself. More importantly learn COM.
Oct 13 2017