Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 352 of file cache.c.
{ int length = cx * cy * bytes_per_pixel; if (offset > sizeof(g_deskcache)) offset = 0; if ((offset + length) <= sizeof(g_deskcache)) { return &g_deskcache[offset]; } error("get desktop %d:%d\n", offset, length); return NULL; }