]> git.sesse.net Git - freerainbowtables/blobdiff - Client Applications/rcracki_mt/global.h
UINT4 -> uint32
[freerainbowtables] / Client Applications / rcracki_mt / global.h
index 04c4e804dd1cd7b68f23398fa6adb916ac013655..9e6cbf1c6277555eddb9c5bec26cad5911c7a748 100644 (file)
@@ -5,7 +5,7 @@
  * Copyright 2009, 2010 DaniĆ«l Niggebrugge <niggebrugge@fox-it.com>
  * Copyright 2009, 2010 James Nobis <frt@quelrod.net>
  *
- * This file is part of racrcki_mt.
+ * This file is part of rcracki_mt.
  *
  * rcracki_mt is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -24,8 +24,6 @@
 #ifndef _GLOBAL_H
 #define _GLOBAL_H
 
-//#include <stdint.h>
-
 #if defined(_WIN32) && !defined(__GNUC__)
        #define uint64 unsigned __int64
 #else
 
 #if defined(_WIN32) && !defined(__GNUC__)
        #define UINT4 unsigned __int32
+       #define uint32 unsigned __int32
 #else
        #ifndef u_int32_t
                #define UINT4 unsigned int
+               #define uint32 unsigned int
        #else
                #define UINT4 u_int32_t
+               #define uint32 u_int32_t
        #endif
 #endif