*** empty log message ***

svn path=/trunk/boinc/; revision=5658
This commit is contained in:
David Anderson 2005-03-14 18:39:41 +00:00
parent 71c9615182
commit 179bdec4d7
3 changed files with 13 additions and 3 deletions

View File

@ -73,15 +73,19 @@ void app_debug_msg (const char *fmt, ...);
// This callback is invoked when a user presses a key.
//
void keyboardD(unsigned char /*key*/, int /*x*/, int /*y*/) {
void keyboardD(unsigned char key, int /*x*/, int /*y*/) {
if (current_graphics_mode == MODE_FULLSCREEN) {
set_mode(MODE_HIDE_GRAPHICS);
} else {
boinc_app_key_press((int) key, 0);
}
}
void keyboardU(unsigned char /*key*/, int /*x*/, int /*y*/) {
void keyboardU(unsigned char key, int /*x*/, int /*y*/) {
if (current_graphics_mode == MODE_FULLSCREEN) {
set_mode(MODE_HIDE_GRAPHICS);
} else {
boinc_app_key_press((int) key, 0);
}
}

View File

@ -25937,3 +25937,9 @@ David 13 Mar 2005
David 13 Mar 2005
- db_dump: name archive dirs X_YYYY_mm_dd_hh_mm_ss
David 14 Mar 2005
- API: implement keyboard handling in X11 (from Eric Myers)
api/
x_opengl.C

View File

@ -29,7 +29,7 @@ The project directory contains all files (inputs,
outputs, executables) related to the project.
<li>
<b>slots</b>: this directory contains one subdirectory for each
CPU 'slot' (normally there are as many slots as the host has CPUs).
result in progress.
The subdirectories are named 0, 1, ... N-1.
</ul>
<p>