05-22-2008 04:40 PM
imgSessionFitROI(SESSION_ID boardid, IMG_ROI_FIT_MODE fitMode, uInt32 top, uInt32 left, uInt32 height, uInt32 width, uInt32* fittedTop, uInt32* fittedLeft, uInt32* fittedHeight, uInt32* fittedWidth);
and my code to interact with it is:
imgSessionFitROI(*Sid, IMG_ROI_FIT_LARGER, *top, *left, *height, *width, &fitTop, &fitLeft, &fitHeight, &fitWidth);
warning C4047: 'function' : 'uInt32' differs in levels of indirection from 'uInt32 *'
warning C4024: 'imgSessionFitROI' : different types for formal and actual parameter 3
05-27-2008 11:02 PM