]> git.sesse.net Git - freerainbowtables/blobdiff - Client Applications/rcracki_mt/MemoryPool.h
distrrtgen fixes for integrating charset into distrrtgen.exe
[freerainbowtables] / Client Applications / rcracki_mt / MemoryPool.h
index 62ae52766014cf4bc1740ee336cb4037b2eb8c02..93047481896076a59bd744da4047b74fa8307bb6 100644 (file)
@@ -1,49 +1,49 @@
-/*\r
- * rcracki_mt is a multithreaded implementation and fork of the original \r
- * RainbowCrack\r
- *\r
- * Copyright (C) Zhu Shuanglei <shuanglei@hotmail.com>\r
- * Copyright Martin Westergaard Jørgensen <martinwj2005@gmail.com>\r
- * Copyright 2009, 2010 Daniël Niggebrugge <niggebrugge@fox-it.com>\r
- * Copyright 2009, 2010 James Nobis <frt@quelrod.net>\r
- * Copyright 2010 uroskn\r
- *\r
- * This file is part of rcracki_mt.\r
- *\r
- * rcracki_mt is free software: you can redistribute it and/or modify\r
- * it under the terms of the GNU General Public License as published by\r
- * the Free Software Foundation, either version 2 of the License, or\r
- * (at your option) any later version.\r
- *\r
- * rcracki_mt is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with rcracki_mt.  If not, see <http://www.gnu.org/licenses/>.\r
- */\r
-\r
-#ifndef _MEMORYPOOL_H\r
-#define _MEMORYPOOL_H\r
-\r
-#include "global.h"\r
-\r
-class CMemoryPool  \r
-{\r
-public:\r
-       CMemoryPool(unsigned int bytesSaved, bool bDebug, uint64 maxMem);\r
-       virtual ~CMemoryPool();\r
-\r
-private:\r
-       bool debug;\r
-       unsigned char* m_pMem;\r
-       uint64 m_nMemSize;\r
-\r
-       uint64 m_nMemMax;\r
-\r
-public:\r
-       unsigned char* Allocate(unsigned int nFileLen, uint64& nAllocatedSize);\r
-};\r
-\r
-#endif\r
+/*
+ * rcracki_mt is a multithreaded implementation and fork of the original 
+ * RainbowCrack
+ *
+ * Copyright (C) Zhu Shuanglei <shuanglei@hotmail.com>
+ * Copyright Martin Westergaard Jørgensen <martinwj2005@gmail.com>
+ * Copyright 2009, 2010 Daniël Niggebrugge <niggebrugge@fox-it.com>
+ * Copyright 2009, 2010 James Nobis <frt@quelrod.net>
+ * Copyright 2010 uroskn
+ *
+ * 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
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * rcracki_mt is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with rcracki_mt.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef _MEMORYPOOL_H
+#define _MEMORYPOOL_H
+
+#include "global.h"
+
+class CMemoryPool  
+{
+public:
+       CMemoryPool(unsigned int bytesSaved, bool bDebug, uint64 maxMem);
+       virtual ~CMemoryPool();
+
+private:
+       bool debug;
+       unsigned char* m_pMem;
+       uint64 m_nMemSize;
+
+       uint64 m_nMemMax;
+
+public:
+       unsigned char* Allocate(unsigned int nFileLen, uint64& nAllocatedSize);
+};
+
+#endif