Hi, I want to make program in pure assembly (using poasm) and I'd like to use Windows libraries but I don't know how to link them(user32.lib kernel32.lib etc).
Can you please show me how to do a manual link, be it in the properties or hard coding it.
Thanks.
I usually use FASM for all my pure Assembly projects but I'd like to also link some C procedures(if you could also show me how that'd be cool),using PellesC IDE of course.
Here's just the small 1KB exe that does nothing,..yet!
;include '/utils/cryptoEx.inc'
;include '/utils/time.inc'
;include '/security/guard.inc'
.code
public start
start PROC argc:DWORD,argv:DWORD
ret
start ENDP
Thanks in advance.