Go to the source code of this file.
Functions | |
struct cell_winsys * | cell_get_winsys (uint format) |
struct cell_winsys* cell_get_winsys | ( | uint | format | ) | [read] |
Definition at line 34 of file cell_winsys.c.
References CALLOC_STRUCT, and cell_winsys::preferredFormat.
00035 { 00036 struct cell_winsys *cws = CALLOC_STRUCT(cell_winsys); 00037 if (cws) 00038 cws->preferredFormat = format; 00039 return cws; 00040 }