When trying to reassemble the quikpad project, i get assembly errors regarding the function "Write_To_File", although i didnt change anything.
it says "conflicting parameter definition" in line 444 and with this "too few arguments to invoke" whenever trying to call that function (in lines 510/535).
quikpad is in the example2 folder of the masm7-package.
Thank everybody for help.
it says "conflicting parameter definition" in line 444 and with this "too few arguments to invoke" whenever trying to call that function (in lines 510/535).
quikpad is in the example2 folder of the masm7-package.
Thank everybody for help.
It's because there's a duplicate function proto'd in masm32.inc which requires 2 params. You can either comment out that line in masm32.inc or rename the Write_To_File proc in the quickpad example.
Thanks for finding this problem, I will fix it for the next service pack, in the short term, renaming the procedure in the source code and prototype is the safest way to handle the problem.
Regards,
hutch@movsd.com
Regards,
hutch@movsd.com
thx 40h4, renaming the proc solved my problem.
thank you all
thank you all