Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git] / thirdparty / freetype-2.3.12 / src / cache / ftccback.h
blob4d0818db277bc1be21da641b7dd00c80028acca2
1 /***************************************************************************/
2 /* */
3 /* ftccback.h */
4 /* */
5 /* Callback functions of the caching sub-system (specification only). */
6 /* */
7 /* Copyright 2004, 2005, 2006 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
9 /* */
10 /* This file is part of the FreeType project, and may only be used, */
11 /* modified, and distributed under the terms of the FreeType project */
12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13 /* this file you indicate that you have read the license and */
14 /* understand and accept it fully. */
15 /* */
16 /***************************************************************************/
18 #ifndef __FTCCBACK_H__
19 #define __FTCCBACK_H__
21 #include <ft2build.h>
22 #include FT_CACHE_H
23 #include "ftcmru.h"
24 #include "ftcimage.h"
25 #include "ftcmanag.h"
26 #include "ftcglyph.h"
27 #include "ftcsbits.h"
30 FT_LOCAL( void )
31 ftc_inode_free( FTC_Node inode,
32 FTC_Cache cache );
34 FT_LOCAL( FT_Error )
35 ftc_inode_new( FTC_Node *pinode,
36 FT_Pointer gquery,
37 FTC_Cache cache );
39 FT_LOCAL( FT_Offset )
40 ftc_inode_weight( FTC_Node inode,
41 FTC_Cache cache );
44 FT_LOCAL( void )
45 ftc_snode_free( FTC_Node snode,
46 FTC_Cache cache );
48 FT_LOCAL( FT_Error )
49 ftc_snode_new( FTC_Node *psnode,
50 FT_Pointer gquery,
51 FTC_Cache cache );
53 FT_LOCAL( FT_Offset )
54 ftc_snode_weight( FTC_Node snode,
55 FTC_Cache cache );
57 FT_LOCAL( FT_Bool )
58 ftc_snode_compare( FTC_Node snode,
59 FT_Pointer gquery,
60 FTC_Cache cache );
63 FT_LOCAL( FT_Bool )
64 ftc_gnode_compare( FTC_Node gnode,
65 FT_Pointer gquery,
66 FTC_Cache cache );
69 FT_LOCAL( FT_Error )
70 ftc_gcache_init( FTC_Cache cache );
72 FT_LOCAL( void )
73 ftc_gcache_done( FTC_Cache cache );
76 FT_LOCAL( FT_Error )
77 ftc_cache_init( FTC_Cache cache );
79 FT_LOCAL( void )
80 ftc_cache_done( FTC_Cache cache );
82 #ifndef FT_CONFIG_OPTION_OLD_INTERNALS
83 FT_LOCAL( void )
84 ftc_node_destroy( FTC_Node node,
85 FTC_Manager manager );
86 #endif
88 #endif /* __FTCCBACK_H__ */
90 /* END */