News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

includes needed for arrfile$ macro

Started by bhy56, August 01, 2011, 06:48:21 PM

Previous topic - Next topic

bhy56

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


Vortex

The import library you need :

oleaut32.lib

bhy56

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.