]> git.sesse.net Git - freerainbowtables/blob - Server Applications/rsearchi/stdafx.h
initial
[freerainbowtables] / Server Applications / rsearchi / stdafx.h
1 // stdafx.h : include file for standard system include files,
2 // or project specific include files that are used frequently, but
3 // are changed infrequently
4 //
5
6 #ifndef __STDAFX_H__
7
8 #ifdef _WIN32
9 #define WIN32_LEAN_AND_MEAN             // Exclude rarely-used stuff from Windows headers
10 #include <stdio.h>
11 #include <tchar.h>
12 #define MYSQL_HOST "freerainbowtables.com"
13 #else
14 #define MYSQL_HOST "localhost"
15
16 #endif
17
18 #ifndef BUILD_ATEA
19 #define MYSQL_DATABASE "rainbowtables-distrrtgen"
20 #define MYSQL_USERNAME "rainbow"
21 #define MYSQL_PASSWORD "QQrQaQQ123$"
22 #endif
23
24 #define STATUS_TABLE_NOTSTARTED 0
25 #define STATUS_TABLE_INPROGRESS 1
26 #define STATUS_TABLE_COMPLETED 2
27
28 #ifndef _WIN32
29         #define Sleep(num) sleep(num / 1000) 
30         #define __int64 long long
31 #endif
32
33 #endif
34 // TODO: reference additional headers your program requires here