#include "scbconfig.h"Go to the source code of this file.
Functions | |
| void | scb_cfg_init_fast_draw_param () |
| void | scb_cfg_set_fast_draw_param (ScbFastDrawParamPtr ptr) |
| void | scb_cfg_get_fast_draw_param (ScbFastDrawParamPtr ptr) |
Variables | |
| static ScbFastDrawParam | s_fast_draw_param |
| void scb_cfg_get_fast_draw_param | ( | ScbFastDrawParamPtr | ptr | ) |
Definition at line 43 of file scbconfig.c.
00044 { 00045 if (ptr) 00046 { 00047 ptr->time = s_fast_draw_param.time; 00048 ptr->count = s_fast_draw_param.count; 00049 } 00050 }
| void scb_cfg_init_fast_draw_param | ( | ) |
Definition at line 28 of file scbconfig.c.
00029 { 00030 s_fast_draw_param.time = SCB_DEF_FAST_DRAW_TIME; 00031 s_fast_draw_param.count = SCB_DEF_FAST_DRAW_COUNT; 00032 }
| void scb_cfg_set_fast_draw_param | ( | ScbFastDrawParamPtr | ptr | ) |
Definition at line 34 of file scbconfig.c.
00035 { 00036 if (ptr) 00037 { 00038 s_fast_draw_param.time = ptr->time; 00039 s_fast_draw_param.count = ptr->count; 00040 } 00041 }
ScbFastDrawParam s_fast_draw_param [static] |
Copyright (C) 2005-2008 iRex Technologies B.V. All rights reserved.
Definition at line 27 of file scbconfig.c.
1.5.6