Subversion Repositories freemyipod

Rev

Rev 490 | Rev 498 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 490 Rev 493
Line 25... Line 25...
25
#define __LIBUI_H__
25
#define __LIBUI_H__
26
 
26
 
27
#include "emcorelib.h"
27
#include "emcorelib.h"
28
 
28
 
29
 
29
 
30
#include "../dither.h"
30
#include "../blend.h"
31
 
31
 
32
 
32
 
33
/* increase this every time the api struct changes */
33
/* increase this every time the api struct changes */
34
#define LIBUI_API_VERSION 1
34
#define LIBUI_API_VERSION 1
35
 
35
 
Line 43... Line 43...
43
         remember to increase LIBUI_API_VERSION. If you make changes to the
43
         remember to increase LIBUI_API_VERSION. If you make changes to the
44
         existing APIs, also update LIBUI_MIN_API_VERSION to current version */
44
         existing APIs, also update LIBUI_MIN_API_VERSION to current version */
45
 
45
 
46
struct libui_api
46
struct libui_api
47
{
47
{
48
    typeof(dither)* dither;
48
    typeof(blend)* blend;
49
};
49
};
50
 
50
 
51
#endif
51
#endif