diff --git a/checkin_notes b/checkin_notes index 7034cfce30..062aee78e8 100755 --- a/checkin_notes +++ b/checkin_notes @@ -4177,3 +4177,9 @@ Rom 24 Apr 2006 clientgui/ MainDocument.h + +Rom 25 Apr 2006 + - Bug Fix: Fix for missing includes. + + client/ + cpu_sched.C diff --git a/client/cpu_sched.C b/client/cpu_sched.C index 966e00ad20..5c9fbb7f1e 100644 --- a/client/cpu_sched.C +++ b/client/cpu_sched.C @@ -17,6 +17,14 @@ // or write to the Free Software Foundation, Inc., // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +#ifdef _WIN32 +#include "boinc_win.h" +#endif + +#ifndef _WIN32 +#include +#endif + #include "client_msgs.h" #include "client_state.h"