hi,
need some help for 64 Bit
what do i have to enhance for 64 Bit :?:
need some help for 64 Bit
HB_FUNC.PRG(322): warning C4244: "Argument": Konvertierung von "LRESULT" in "int", möglicher Datenverlust
HB_FUNC.PRG(336): warning C4244: "Argument": Konvertierung von "LRESULT" in "int", möglicher Datenverlust
314 HB_FUNC( LV_GETSELECTEDCOUNT )
315 {
316 Â #ifndef _WIN64
317 Â Â Â HWND hWnd = ( HWND ) hb_parnl( 1 );
318 Â #else
319 Â Â Â HWND hWnd = ( HWND ) hb_parnll( 1 );
320 Â #endif
321 Â #ifdef AVOID_COMPILER_WARNING
322 Â Â Â hb_retni( SendMessage( hWnd, LVM_GETSELECTEDCOUNT, 0, 0) ) ;
323 Â #else
324 Â Â Â hb_retni( ListView_GetSelectedCount(hWnd) );
325 Â #endif335 Â #ifdef AVOID_COMPILER_WARNING
336 Â Â Â hb_retni( SendMessage( hWnd, LVM_GETSELECTIONMARK, 0, 0) ) ;
337 Â #else
338 Â Â Â hb_retni( ListView_GetSelectionMark(hWnd) );
339 Â #endifgreeting,
Jimmy
Jimmy