/** * FreeRDP: A Remote Desktop Protocol Client * RDP Caches * * Copyright 2011 Marc-Andre Moreau * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include rdpCache* cache_new(rdpSettings* settings) { rdpCache* cache; cache = (rdpCache*) xzalloc(sizeof(rdpCache)); if (cache != NULL) { cache->settings = settings; cache->glyph = glyph_cache_new(settings); cache->brush = brush_cache_new(settings); cache->pointer = pointer_cache_new(settings); cache->bitmap = bitmap_cache_new(settings); cache->offscreen = offscreen_cache_new(settings); cache->palette = palette_cache_new(settings); } return cache; } void cache_free(rdpCache* cache) { if (cache != NULL) { glyph_cache_free(cache->glyph); brush_cache_free(cache->brush); pointer_cache_free(cache->pointer); bitmap_cache_free(cache->bitmap); offscreen_cache_free(cache->offscreen); palette_cache_free(cache->palette); xfree(cache); } }