void boinc_app_mouse_move( int x, int y, int left, int middle, int right )[...]void boinc_app_mouse_button( int x, int y, int which, int is_down )
void boinc_app_mouse_move( int x, int y, bool left, bool middle, bool right )[...]void boinc_app_mouse_button( int x, int y, int which, bool is_down )
Adrenalin,the Manifest problem can be easily resolved by creating an empty file called xyz.Manifest (you choose the name, but the extension has to be .Manifest), then enter the name of that file in seti_boinc_private.rc.This is a VS 2005 problem only, and it's annoying but pretty easy to fix.
About the other, that's an error in S@H code I sent to Eric Korpela a while ago, he said it should be fixed. Eric, did that ever make it into the S@H tree?Inside sah_gfx.cpp, find boinc_app_mouse_move and boinc_app_mouse_button. They will have a definition like the following:Quote from: void boinc_app_mouse_move( int x, int y, int left, int middle, int right )[...]void boinc_app_mouse_button( int x, int y, int which, int is_down )Quote from: void boinc_app_mouse_move( int x, int y, bool left, bool middle, bool right )[...]void boinc_app_mouse_button( int x, int y, int which, bool is_down )I've highlighted the incorrect parts in red and the corrected parts in green. S@H should now compile. Took me forever initially to spot that...HTH,Good luck compiling!Simon.