Text only
|
Text with Images
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
Expand
#define GetTextExtentPoint32 GetTextExtentPoint
That'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
Text only
|
Text with Images