¿Cómo resolver esto:
Fwh 1010 + Vc2008 + Harbour
FiveHCm.lib(FWGIF.obj) : error LNK2019: símbolo externo _GetWindowLongPtr sin resolver al que se hace referencia en la función _FW_WndProc@16
Saluds, Ale
Bug...Fwh1010 + TGif...
Bug...Fwh1010 + TGif...
aleseribeli@hotmail.com
FwH, Hb Svn, ADS 8.1, ADS 10, Pelles C, FwPPC, MsVc 2008, MsVc 2010
"Conhecimento, você não subtrai quando divide; mas soma e multiplica."
**---Mário Persona---**
FwH, Hb Svn, ADS 8.1, ADS 10, Pelles C, FwPPC, MsVc 2008, MsVc 2010
"Conhecimento, você não subtrai quando divide; mas soma e multiplica."
**---Mário Persona---**
Re: Bug...Fwh1010 + TGif...
estou com mesmo problema
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: Bug...Fwh1010 + TGif...
Please add this code to your app:
http://msdn.microsoft.com/en-us/library ... s.85).aspx
Code: Select all
#pragma BEGINDUMP
#include <windows.h>
#ifndef _WIN64
LONG_PTR WINAPI GetWindowLongPtr( HWND hWnd, int nIndex )
{
return GetWindowLong( hWnd, nIndex );
}
#endif
#pragma ENDDUMP
Note To write code that is compatible with both 32-bit and 64-bit versions of Windows, use GetWindowLongPtr. When compiling for 32-bit Windows, GetWindowLongPtr is defined as a call to the GetWindowLong function.