Q: How can I modify the size of the magnifing glass?
A: There is an M_SetSizes function in the BiDisp.dll which allows developers to make make this modification. You can specify the width and height of the magnifing glass with this function.
Code example:
#include “BiDib.h”
#include “Magnify.h”
…
M_SetSizes(200, 100);
…