digitalmars.D.learn - How to add struct definition?
- Injeckt (4/4) Sep 08 2022 I need to add this struct definition in my project. But how to do
- Paul Backus (2/6) Sep 08 2022 import core.sys.windows.iptypes;
- John Chapman (4/8) Sep 08 2022 It's defined in DRuntime, so you can just import the module like
I need to add this struct definition in my project. But how to do that? This structure: https://docs.microsoft.com/en-us/windows/win32/api/iptypes/ns-iptypes-ip_adapter_info
Sep 08 2022
On Friday, 9 September 2022 at 00:16:01 UTC, Injeckt wrote:I need to add this struct definition in my project. But how to do that? This structure: https://docs.microsoft.com/en-us/windows/win32/api/iptypes/ns-iptypes-ip_adapter_infoimport core.sys.windows.iptypes;
Sep 08 2022
On Friday, 9 September 2022 at 00:16:01 UTC, Injeckt wrote:I need to add this struct definition in my project. But how to do that? This structure: https://docs.microsoft.com/en-us/windows/win32/api/iptypes/ns-iptypes-ip_adapter_infoIt's defined in DRuntime, so you can just import the module like this: import core.sys.windows.iptypes;
Sep 08 2022