mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2026-06-17 00:09:23 +00:00
updates and moves
n/a
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 65 KiB |
@@ -0,0 +1,8 @@
|
||||
//
|
||||
// Copyright (c) Johnny Shaw. All rights reserved.
|
||||
//
|
||||
// File: source/ProcessHerpaderping/res/resource.h
|
||||
// Author: Johnny Shaw
|
||||
// Abstract: Resource Header
|
||||
//
|
||||
#define IDI_ICON 101
|
||||
@@ -0,0 +1,47 @@
|
||||
//
|
||||
// Copyright (c) Johnny Shaw. All rights reserved.
|
||||
//
|
||||
// File: source/ProcessHerpaderping/res/resource.rc
|
||||
// Author: Johnny Shaw
|
||||
// Abstract: Resource File
|
||||
//
|
||||
#include <Windows.h>
|
||||
#include <ntverp.h>
|
||||
#include "resource.h"
|
||||
#include "version.h"
|
||||
|
||||
IDI_ICON ICON "Icon.ico"
|
||||
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION VER_MAJOR,VER_MINOR,VER_PATCH,VER_BUILD
|
||||
PRODUCTVERSION VER_MAJOR,VER_MINOR,VER_PATCH,VER_BUILD
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
#else
|
||||
FILEFLAGS 0x0L
|
||||
#endif
|
||||
FILEOS 0x40004L
|
||||
FILETYPE 0x1L
|
||||
FILESUBTYPE 0x0L
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "CompanyName", STR_COMPANY_NAME
|
||||
VALUE "FileDescription", STR_FILE_DESCRIPTION
|
||||
VALUE "FileVersion", STR_VERSION
|
||||
VALUE "InternalName", STR_INTERNAL_NAME
|
||||
VALUE "LegalCopyright", STR_COPYRIGHT
|
||||
VALUE "OriginalFilename", STR_ORIGINAL_FILENAME
|
||||
VALUE "ProductName", STR_PRODUCT_NAME
|
||||
VALUE "ProductVersion", STR_PRODUCT_VERSION
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x409, 1200
|
||||
END
|
||||
END
|
||||
@@ -0,0 +1,42 @@
|
||||
//
|
||||
// Copyright (c) Johnny Shaw. All rights reserved.
|
||||
//
|
||||
// File: source/ProcessHerpaderping/res/version.h
|
||||
// Author: Johnny Shaw
|
||||
// Abstract: Version Header
|
||||
//
|
||||
#pragma once
|
||||
#define VER_MAJOR 1
|
||||
#define VER_MINOR 0
|
||||
#define VER_PATCH 0
|
||||
#define VER_BUILD 1
|
||||
|
||||
#define MKSTR(_x_) #_x_
|
||||
#define MKWSTR(_x_) L##_x_
|
||||
#define VER_MAKE_STR(_Major_, _Minor_, _Patch_, _Build_)\
|
||||
MKSTR(_Major_) "." \
|
||||
MKSTR(_Minor_) "." \
|
||||
MKSTR(_Patch_) "." \
|
||||
MKSTR(_Build_)
|
||||
#define VER_MAKE_WSTR(_Major_, _Minor_, _Patch_, _Build_)\
|
||||
MKWSTR(_Major_) L"." \
|
||||
MKWSTR(_Minor_) L"." \
|
||||
MKWSTR(_Patch_) L"." \
|
||||
MKWSTR(_Build_)
|
||||
|
||||
#define WSTR_COMPANY_NAME L"Johnny Shaw"
|
||||
#define STR_COMPANY_NAME "Johnny Shaw"
|
||||
#define WSTR_COPYRIGHT L"Copyright (c) 2020 Johnny Shaw"
|
||||
#define STR_COPYRIGHT "Copyright (c) 2020 Johnny Shaw"
|
||||
#define WSTR_ORIGINAL_FILENAME L"ProcessHerpaderping.exe"
|
||||
#define STR_ORIGINAL_FILENAME "ProcessHerpaderping.exe"
|
||||
#define WSTR_PRODUCT_NAME L"Process Herpaderping Tool"
|
||||
#define STR_PRODUCT_NAME "Process Herpaderping Tool"
|
||||
#define WSTR_FILE_DESCRIPTION WSTR_PRODUCT_NAME
|
||||
#define STR_FILE_DESCRIPTION STR_PRODUCT_NAME
|
||||
#define WSTR_INTERNAL_NAME L"ProcessHerpaderping"
|
||||
#define STR_INTERNAL_NAME "ProcessHerpaderping"
|
||||
#define WSTR_VERSION VER_MAKE_WSTR(VER_MAJOR, VER_MINOR, VER_PATCH, VER_BUILD)
|
||||
#define STR_VERSION VER_MAKE_STR(VER_MAJOR, VER_MINOR, VER_PATCH, VER_BUILD)
|
||||
#define WSTR_PRODUCT_VERSION WSTR_VERSION
|
||||
#define STR_PRODUCT_VERSION STR_VERSION
|
||||
Reference in New Issue
Block a user