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
- Code: Select all Expand view
- 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 #endif
- Code: Select all Expand view
- 335 #ifdef AVOID_COMPILER_WARNING
336 hb_retni( SendMessage( hWnd, LVM_GETSELECTIONMARK, 0, 0) ) ;
337 #else
338 hb_retni( ListView_GetSelectionMark(hWnd) );
339 #endif
what do i have to enhance for 64 Bit