2003-10-02 21:16:37 +00:00
|
|
|
#include "boinc_api.h"
|
2004-12-10 21:06:42 +00:00
|
|
|
#include "graphics_impl.h"
|
2003-10-02 21:16:37 +00:00
|
|
|
#include "graphics_api.h"
|
2004-07-15 21:54:48 +00:00
|
|
|
|
2004-10-26 21:12:00 +00:00
|
|
|
int boinc_init_graphics(void (*worker)()) {
|
2004-12-10 21:06:42 +00:00
|
|
|
return boinc_init_graphics_impl(worker, boinc_init_options_general);
|
2004-10-26 21:12:00 +00:00
|
|
|
}
|
|
|
|
|
2004-12-10 21:06:42 +00:00
|
|
|
int boinc_init_options_graphics(BOINC_OPTIONS& opt, void (*worker)()) {
|
|
|
|
return boinc_init_options_graphics_impl(opt, worker, boinc_init_options_general);
|
2004-10-16 20:20:37 +00:00
|
|
|
}
|