Content-type: text/html
size_node :: A function used to size the node. destroy_node :: A function used to destroy the node.
A very simple structure used to describe a cache node's class to the cache manager. A very simple structure used to describe a cache node's class to the cache manager.
Notes: The cache node class doesn't include a `new_node' function because the cache manager never allocates cache node directly; it delegates this task to its cache objects. typedef struct FTC_CacheNode_Class_ { FTC_CacheNode_SizeFunc size_node; FTC_CacheNode_DestroyFunc destroy_node; } FTC_CacheNode_Class; **** CACHE DEFINITIONS **** **** FTC_Cache_InitFunc
A function used to initialize a given cache object.
cache :: A handle to the new cache. typedef FT_Error (*FTC_Cache_InitFunc)( FTC_Cache cache ); FTC_Cache_DoneFunc
A function to finalize a given cache object.
cache :: A handle to the target cache. typedef void (*FTC_Cache_DoneFunc)( FTC_Cache cache );
This documentation was generated for Freetype 2.0.4 by autodocbook (http://www.stillhq.com). Autodocbook is (c) Michael Still 2001.
Copyright 1996-2000 by
David Turner, Robert Wilhelm, and Werner Lemberg.
This file is part of the FreeType project, and may only be used, modified, and distributed under the terms of the FreeType project license, LICENSE.TXT. By continuing to use, modify, or distribute this file you indicate that you have read the license and understand and accept it fully.
Please report errors in this documentation, and Freetype itself to freetype@freetype.org