#include "machine.h"Include dependency graph for loadsavelanguage.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| BOOL | loadlanguagepref (void) |
| BOOL | savelanguagepref (void) |
| BOOL loadlanguagepref | ( | void | ) |
Definition at line 31 of file loadsavelanguage.c.
References loadlanguagepref_linux().
Referenced by InitializeLocalization().
00032 { 00033 #ifdef _MSC_VER 00034 return loadlanguagepref_windows(); 00035 #else 00036 return loadlanguagepref_linux(); 00037 #endif 00038 }
Here is the call graph for this function:

Here is the caller graph for this function:

| BOOL savelanguagepref | ( | void | ) |
Definition at line 40 of file loadsavelanguage.c.
References savelanguagepref_linux().
Referenced by setlanguage().
00041 { 00042 #ifdef _MSC_VER 00043 return savelanguagepref_windows(); 00044 #else 00045 return savelanguagepref_linux(); 00046 #endif 00047 }
Here is the call graph for this function:

Here is the caller graph for this function:

1.5.1