summaryrefslogblamecommitdiffstats
path: root/src/modelinfo/ModelIndices.cpp
blob: 98c7fb388e8791bf004bce8df1ba9e093be94525 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                   
 
                    

                         
                                    





                      
                              






                                                 
                      
                                                     






                           




                      
#include "common.h"

#include "General.h"
#include "ModelIndices.h"

#define X(name, var) int16 var = -1;
	MODELINDICES
#undef X

void
InitModelIndices(void)
{
#define X(name, var) var = -1;
	MODELINDICES
#undef X
}

void
MatchModelString(const char *modelname, int16 id)
{
#define X(name, var) \
	if(!CGeneral::faststrcmp(name, modelname)){ \
		var = id; \
		return; \
	}
	MODELINDICES
#undef X
}

void
TestModelIndices(void)
{
	;
}