I post here the first (last ?) version of an asm static library. It's purpose is to handle various components of directX.
Feel free to improve it or not as you wish.
h.
Feel free to improve it or not as you wish.
h.
nice idea.. when I try to compile something like, 'screen.asm' - one of the examples, it says 'ddraw.lib' not found or something like that.. I had to change the includes for the other stuff to \masm32\include\ and \masm32\lib.. could not find the ddraw.lib however, is the directory hardcoded in the directwrap.lib file?
It is notorious that masm32 libraries set isn't complete at all, you will need the following files in order to assemble anything:
ddraw.lib
dsound.lib
dinput.lib
uuid.lib
dxguid.lib
You can progrably grab'em from the directx sdk.
Note: that in this version the window mode isn't working.
h.
ddraw.lib
dsound.lib
dinput.lib
uuid.lib
dxguid.lib
You can progrably grab'em from the directx sdk.
Note: that in this version the window mode isn't working.
h.