diff --git a/api/graphics_api.C b/api/graphics_api.C index e16ac84b7b..f91335c82c 100755 --- a/api/graphics_api.C +++ b/api/graphics_api.C @@ -83,25 +83,6 @@ int boinc_init_graphics() { #ifdef _WIN32 - BOOL bLoadError = FALSE; - - __try { - if (FAILED(__HrLoadAllImportsForDll("glut32.dll"))) - { - fprintf(stderr, "boinc_init_graphics(): failed to load imports for glut32.dll\n"); - fprintf(stderr, "boinc_init_graphics(): graphics have been disabled\n"); - bLoadError = TRUE; - } - } - __except((GetExceptionCode() == 0xC06D007E) ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH) { - fprintf(stderr, "boinc_init_graphics(): failed to load imports for glut32.dll\n"); - fprintf(stderr, "boinc_init_graphics(): graphics have been disabled\n"); - bLoadError = TRUE; - } - - if (bLoadError) return ERR_NOT_FOUND; - - // Create the event object used to signal between the // worker and event threads diff --git a/checkin_notes b/checkin_notes index 346956f9c8..a2f8e6d893 100755 --- a/checkin_notes +++ b/checkin_notes @@ -10892,3 +10892,11 @@ David Mar 24 2004 client_types.C log_flags.C,h +Rom Mar 25 2004 + - I have made SETI_BOINC Glut Free, Basically copied font code from glut + and put it into the glut folder. + - Removed Glut libraries + - Removed Delay Load technologies + + api/ + graphics_api.C \ No newline at end of file