diff --git a/Scylla/AboutGui.cpp b/Scylla/AboutGui.cpp index ba01ecc..85b9770 100644 --- a/Scylla/AboutGui.cpp +++ b/Scylla/AboutGui.cpp @@ -1,30 +1,30 @@ #include "AboutGui.h" #include "definitions.h" BOOL AboutGui::OnInitDialog(CWindow wndFocus, LPARAM lInitParam) { StaticTitle.Attach(GetDlgItem(IDC_STATIC_ABOUT_TITLE)); StaticAbout.Attach(GetDlgItem(IDC_STATIC_ABOUT)); LOGFONT lf; CFontHandle font = StaticTitle.GetFont(); font.GetLogFont(&lf); lf.lfWeight = FW_BOLD; FontBold.CreateFontIndirect(&lf); StaticTitle.SetFont(FontBold, FALSE); StaticTitle.SetWindowText(TEXT(APPNAME)TEXT(" ")TEXT(ARCHITECTURE)TEXT(" ")TEXT(APPVERSION)); - StaticAbout.SetWindowText(TEXT(DEVELOPED)TEXT("\n\n\n")TEXT(CREDIT_DISTORM)TEXT("\n")TEXT(CREDIT_YODA)TEXT("\n\n")TEXT(GREETINGS)TEXT("\n\n\n")TEXT(VISIT)); + StaticAbout.SetWindowText(TEXT(DEVELOPED)TEXT("\n\n\n")TEXT(CREDIT_DISTORM)TEXT("\n")TEXT(CREDIT_YODA)TEXT("\n")TEXT(CREDIT_SILK)TEXT("\n\n")TEXT(GREETINGS)TEXT("\n\n\n")TEXT(VISIT)); CenterWindow(); return TRUE; } void AboutGui::OnCancel(UINT uNotifyCode, int nID, CWindow wndCtl) { FontBold.DeleteObject(); EndDialog(0); } diff --git a/Scylla/MainGui.rc b/Scylla/MainGui.rc index 68ca4ec..8b923c5 100644 Binary files a/Scylla/MainGui.rc and b/Scylla/MainGui.rc differ diff --git a/Scylla/definitions.h b/Scylla/definitions.h index 70a0e59..93a7f44 100644 --- a/Scylla/definitions.h +++ b/Scylla/definitions.h @@ -1,34 +1,35 @@ #pragma once #define APPNAME "Scylla" #ifdef _WIN64 #define ARCHITECTURE "x64" #define PRINTF_DWORD_PTR "%I64X" #define PRINTF_DWORD_PTR_FULL "%016I64X" #define PRINTF_DWORD_PTR_HALF "%08I64X" #define MAX_HEX_VALUE_EDIT_LENGTH 16 #else #define ARCHITECTURE "x86" #define PRINTF_DWORD_PTR "%X" #define PRINTF_DWORD_PTR_FULL "%08X" #define PRINTF_DWORD_PTR_HALF "%08X" #define MAX_HEX_VALUE_EDIT_LENGTH 8 #endif #define APPVERSION "v0.3" #define RECOMMENDED_OS "This tool was designed to work with Windows 7 x64" #define DEVELOPED "Developed with Microsoft Visual Studio 2010, written in pure C/C++" -#define CREDIT_DISTORM "This tool uses the diStorm disassembler library http://code.google.com/p/distorm/" +#define CREDIT_DISTORM "This tool uses the diStorm disassembler library -> http://code.google.com/p/distorm/" #define CREDIT_YODA "The PE Rebuilder engine is based on the Realign DLL version 1.5 by yoda" +#define CREDIT_SILK "The small icons are taken from the Silk icon package -> http://www.famfamfam.com" #define GREETINGS "Greetz: metr0, G36KV and all from the gRn Team" #define VISIT "Visit http://kickme.to/grn and http://forum.tuts4you.com " #define PLUGIN_MENU_BASE_ID 0x10 \ No newline at end of file