This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ECHO OFF | |
TASKKILL /F /IM RvRvpnGui.exe /FI "STATUS eq RUNNING" | |
TASKKILL /F /IM RvControlSvc.exe | |
EXIT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// (C) CoffeeLake 2024-2025 | |
// 15th section (as far as I know, ".text") | |
// stores Visual Basic 5.0 VM information. Nowdays 15th section stores Cor20 .NET data | |
// | |
public struct VbHeaderStart | |
{ | |
public Byte Ia32PushCode; | |
public UInt32 PushAddress; // <- This address is a pointer to the VbHeader | |
public Byte Ia32CallCode; // structure. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using UnityEngine; // база | |
using TMPro; // TextMeshPro | |
/// <summary> | |
/// Определение типа "Слова". | |
/// Если я помню правильно, аттрибут нужен, чтобы Юня |