News:

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

001_helloworld compile error

Started by evil9999, July 08, 2011, 07:56:58 AM

Previous topic - Next topic

evil9999

Hi

I'm not good at English, so it's difficult for me. I hope you can understand.

Thanks


HIDE 1.51.02    hla 2.15 / stdlib 8.0

Build :D:\download\hla\hlaexamples2.16\Win32\howl\001_helloworld.hla
-D:\download\hla\hlaexamples2.16\Win32\howl\001_helloworld.hla
Link :001_helloworld.hla
POLINK: error: Unresolved external symbol '__imp__CreateSolidBrush'.
POLINK: error: Unresolved external symbol '__imp__DeleteObject'.
POLINK: error: Unresolved external symbol '__imp__InitCommonControls'.
POLINK: error: Unresolved external symbol '__imp__MakeDragList'.
POLINK: error: Unresolved external symbol '__imp__LBItemFromPt'.
POLINK: error: Unresolved external symbol '__imp__DrawInsert'.
POLINK: error: Unresolved external symbol '__imp__SelectObject'.
POLINK: error: Unresolved external symbol '__imp__SetTextColor'.
POLINK: error: Unresolved external symbol '__imp__SetBkColor'.
POLINK: fatal error: 9 unresolved external(s).
Return :1
------------------------------------------------------------------------
Build done
Processes launched : 2
Errors Returned :0

Sevag.K

you have to link in the proper libraries.
with HOWL, those are probably gdi32.lib, comctl32.lib, comdlg32.lib

if you're on standard mode, go to Options -> Standard Mode to see or edit the linked objects.

if you have created a project, go to Project -> Jobs Manager, click on the job and you can see and edit the linked objects there.

evil9999