~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/include/BIF_language.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-05-17 11:47:59 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517114759-yp4ybrnhp2u7pk66
Tags: 2.44-1
* New upstream release.
* Drop debian/patches/01_64bits_stupidity, not needed anymore: as of this
  version blender is 64 bits safe again. Adjust README.Debian accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: BIF_language.h,v 1.6 2005/01/21 14:48:02 phase Exp $
 
2
 * $Id: BIF_language.h,v 1.7 2007/03/15 12:34:44 sirdude Exp $
3
3
 *
4
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5
5
 *
52
52
void BIF_SetScale(float aspect);
53
53
void refresh_interface_font(void);
54
54
 
 
55
struct LANGMenuEntry {
 
56
        struct LANGMenuEntry *next;
 
57
        char *line;
 
58
        char *language;
 
59
        char *code;
 
60
        int id;
 
61
};
 
62
 
 
63
struct LANGMenuEntry *find_language(short langid);
 
64
 
55
65
#endif /* BIF_LANGUAGE_H */
56
66