boostorg / winapi

Windows API declarations without <windows.h>, for internal Boost use.
62 stars 58 forks source link

Incorporate DbgHelp #10

Closed klemens-morgenstern closed 8 years ago

klemens-morgenstern commented 8 years ago

I need a few functions from DbgHelp.h for an extension of boost.DLL, would this fit into this library? It's not the winapi strictly speaking, but it's so heavily dependent on that, that I'd like to add it here as soon as it's tested.

Lastique commented 8 years ago

No, I think this submodule is not the right place for it.

Why don't you just #include DbgHelp.h in Boost.DLL?

klemens-morgenstern commented 8 years ago

Because it incorporates all this Winapi stuff, which I want to avoid for a header-only library.

But then I will just keep my header in Boost.DLL, I just thought it might be of interest here.