Subversion Repositories spk

Rev

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

Rev 188 Rev 189
Line 2... Line 2...
2
 
2
 
3
#include <string>
3
#include <string>
4
#include "../spkdll.h"
4
#include "../spkdll.h"
5
#include "../spkdef.h"
5
#include "../spkdef.h"
6
 
6
 
7
enum {
7
enum Compare {
8
	COMPARE_SAME		= 0,
8
	COMPARE_SAME		= 0,
9
	COMPARE_NEWER		= 1,
9
	COMPARE_NEWER		= 1,
10
	COMPARE_OLDER		= -1,
10
	COMPARE_OLDER		= -1,
11
};
11
};
12
 
12