Pelles C forum

C language => Pocket PC and Smartphone questions => Topic started by: Doug Jones on June 11, 2007, 01:31:26 AM

Title: POLINK: error: Unresolved external symbol 'GetTextExtentPoint32W'.
Post by: Doug Jones on June 11, 2007, 01:31:26 AM
Can anyone help me with this error?

Thanks DJ
Title: Re: POLINK: error: Unresolved external symbol 'GetTextExtentPoint32W'.
Post by: frankie on June 11, 2007, 10:31:31 AM
In the wingdi header is missing the assignement:
Code: [Select]
#define GetTextExtentPoint32 GetTextExtentPointThat's why you get the problem.
Use 'GetTextExtentPoint'
Title: Re: POLINK: error: Unresolved external symbol 'GetTextExtentPoint32W'.
Post by: Doug Jones on June 11, 2007, 03:35:54 PM
Thanks Frankie
DJ