The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: bhy56 on August 01, 2011, 06:48:21 PM

Title: includes needed for arrfile$ macro
Post by: bhy56 on August 01, 2011, 06:48:21 PM
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

Title: Re: includes needed for arrfile$ macro
Post by: Vortex on August 01, 2011, 06:51:43 PM
The import library you need :

oleaut32.lib
Title: Re: includes needed for arrfile$ macro
Post by: bhy56 on August 01, 2011, 06:59:45 PM
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.