When I use #include <d3d9.h>
in my programs, I no longer need to include windows.h
to use windows functions like WinMain
, and CreateWindow
.
Is this because d3d9.h
&c. include windows.h
? Mainly, I'm wondering if it is possible to substitute windows.h
with d3d9.h
, etc, and still be able to se any functions I could use with windows.h
.