diff --git a/Sources/Plasma/Apps/CMakeLists.txt b/Sources/Plasma/Apps/CMakeLists.txt index a2e648d3..0f6ebec8 100644 --- a/Sources/Plasma/Apps/CMakeLists.txt +++ b/Sources/Plasma/Apps/CMakeLists.txt @@ -5,4 +5,5 @@ add_subdirectory(plUruLauncher) add_subdirectory(plFileSecure) add_subdirectory(plFileEncrypt) add_subdirectory(plLogDecrypt) +add_subdirectory(plMD5) add_subdirectory(plPageInfo) diff --git a/Sources/Plasma/Apps/plMD5/CMakeLists.txt b/Sources/Plasma/Apps/plMD5/CMakeLists.txt new file mode 100644 index 00000000..c1c3aacb --- /dev/null +++ b/Sources/Plasma/Apps/plMD5/CMakeLists.txt @@ -0,0 +1,19 @@ +include_directories("../../Apps") +include_directories("../../CoreLib") +include_directories("../../FeatureLib/inc") +include_directories("../../FeatureLib") +include_directories("../../NucleusLib/inc") +include_directories("../../NucleusLib") +include_directories("../../PubUtilLib/inc") +include_directories("../../PubUtilLib") +include_directories(${OPENSSL_INCLUDE_DIR}) + +set(plMD5_SOURCES + Main.cpp +) + +add_executable(plMD5 ${plMD5_SOURCES}) +target_link_libraries(plMD5 CoreLib pnUtils pnProduct plEncryption) +target_link_libraries(plMD5 ${OPENSSL_LIBRARIES}) + +source_group("Source Files" FILES ${plMD5_SOURCES}) diff --git a/Sources/Plasma/Apps/plMD5/Intern.h b/Sources/Plasma/Apps/plMD5/Intern.h deleted file mode 100644 index 216c3c18..00000000 --- a/Sources/Plasma/Apps/plMD5/Intern.h +++ /dev/null @@ -1,51 +0,0 @@ -/*==LICENSE==* - -CyanWorlds.com Engine - MMOG client, server and tools -Copyright (C) 2011 Cyan Worlds, Inc. - -This program 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 3 of the License, or -(at your option) any later version. - -This program 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 this program. If not, see . - -Additional permissions under GNU GPL version 3 section 7 - -If you modify this Program, or any covered work, by linking or -combining it with any of RAD Game Tools Bink SDK, Autodesk 3ds Max SDK, -NVIDIA PhysX SDK, Microsoft DirectX SDK, OpenSSL library, Independent -JPEG Group JPEG library, Microsoft Windows Media SDK, or Apple QuickTime SDK -(or a modified version of those libraries), -containing parts covered by the terms of the Bink SDK EULA, 3ds Max EULA, -PhysX SDK EULA, DirectX SDK EULA, OpenSSL and SSLeay licenses, IJG -JPEG Library README, Windows Media SDK EULA, or QuickTime SDK EULA, the -licensors of this Program grant you additional -permission to convey the resulting work. Corresponding Source for a -non-source form of such a combination shall include the source code for -the parts of OpenSSL and IJG JPEG Library used as well as that of the covered -work. - -You can contact Cyan Worlds, Inc. by email legal@cyan.com - or by snail mail at: - Cyan Worlds, Inc. - 14617 N Newport Hwy - Mead, WA 99021 - -*==LICENSE==*/ -/***************************************************************************** -* -* $/Plasma20/Sources/Plasma/Apps/plMD5/Intern.h -* -***/ - -#ifdef PLASMA20_SOURCES_PLASMA_APPS_PLMD5_INTERN_H -#error "Header $/Plasma20/Sources/Plasma/Apps/plMD5/Intern.h included more than once" -#endif -#define PLASMA20_SOURCES_PLASMA_APPS_PLMD5_INTERN_H diff --git a/Sources/Plasma/Apps/plMD5/Main.cpp b/Sources/Plasma/Apps/plMD5/Main.cpp index 2c0da5ce..1726c2a4 100644 --- a/Sources/Plasma/Apps/plMD5/Main.cpp +++ b/Sources/Plasma/Apps/plMD5/Main.cpp @@ -45,9 +45,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com * ***/ -#include "Pch.h" -#pragma hdrstop +#include "pnUtils/pnUtils.h" +#include "pnProduct/pnProduct.h" +#include "plEncryption/plChecksum.h" +#include /***************************************************************************** * @@ -56,7 +58,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com ***/ //============================================================================ -int __cdecl main (int argc, char ** argv) { +int CDECL main (int argc, char ** argv) { if (argc < 2) { fprintf(stderr, "ERROR: Please specify filename.\n"); diff --git a/Sources/Plasma/Apps/plMD5/Pch.h b/Sources/Plasma/Apps/plMD5/Pch.h deleted file mode 100644 index 8f0b5758..00000000 --- a/Sources/Plasma/Apps/plMD5/Pch.h +++ /dev/null @@ -1,57 +0,0 @@ -/*==LICENSE==* - -CyanWorlds.com Engine - MMOG client, server and tools -Copyright (C) 2011 Cyan Worlds, Inc. - -This program 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 3 of the License, or -(at your option) any later version. - -This program 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 this program. If not, see . - -Additional permissions under GNU GPL version 3 section 7 - -If you modify this Program, or any covered work, by linking or -combining it with any of RAD Game Tools Bink SDK, Autodesk 3ds Max SDK, -NVIDIA PhysX SDK, Microsoft DirectX SDK, OpenSSL library, Independent -JPEG Group JPEG library, Microsoft Windows Media SDK, or Apple QuickTime SDK -(or a modified version of those libraries), -containing parts covered by the terms of the Bink SDK EULA, 3ds Max EULA, -PhysX SDK EULA, DirectX SDK EULA, OpenSSL and SSLeay licenses, IJG -JPEG Library README, Windows Media SDK EULA, or QuickTime SDK EULA, the -licensors of this Program grant you additional -permission to convey the resulting work. Corresponding Source for a -non-source form of such a combination shall include the source code for -the parts of OpenSSL and IJG JPEG Library used as well as that of the covered -work. - -You can contact Cyan Worlds, Inc. by email legal@cyan.com - or by snail mail at: - Cyan Worlds, Inc. - 14617 N Newport Hwy - Mead, WA 99021 - -*==LICENSE==*/ -/***************************************************************************** -* -* $/Plasma20/Sources/Plasma/Apps/plMD5/Pch.h -* -***/ - -#ifdef PLASMA20_SOURCES_PLASMA_APPS_PLMD5_PCH_H -#error "Header $/Plasma20/Sources/Plasma/Apps/plMD5/Pch.h included more than once" -#endif -#define PLASMA20_SOURCES_PLASMA_APPS_PLMD5_PCH_H - -#include "pnUtils/pnUtils.h" -#include "pnProduct/pnProduct.h" -#include "plEncryption/plChecksum.h" - -#include