I am new to masm and am using masm32. I am trying to use the arrfile$ macro that I found in the masm32 help documents. But I keep getting the error:
POLINK: error: Unresolved external symbol '_SysFreeString'.
POLINK: error: Unresolved external symbol '_SysAllocStringByteLen'.
POLINK: fatal error: 2 unresolved external(s).
I think I need to add some includes but have not been able to find what onces I need. Any help would be appreciated.
Thanks
The import library you need :
oleaut32.lib
Quote from: Vortex on August 01, 2011, 06:51:43 PM
The import library you need :
oleaut32.lib
That did it, thanks for the fast reply.