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
Public Function HexDump(ByVal Bytes As Byte(), Optional ByVal BytesPerLine As Integer = 16) As String | |
Dim sb = New StringBuilder() | |
For line As Integer = 0 To Bytes.Length Step BytesPerLine | |
Dim linebytes As Byte() = Bytes.Skip(line).Take(BytesPerLine).ToArray() | |
sb.AppendFormat("{0:x8}" & vbTab, line) | |
sb.Append(BytesArrayToHex(linebytes)) | |
sb.Append(vbTab) | |
sb.Append(BytesArrayToString(linebytes)) | |
sb.Append(vbCrLf) |
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
/* | |
Implementing ImGUI on GTA VC | |
Coded by: Lemonhaze | |
Note: a directx8 to direct9 wrapper was used. | |
*/ | |
// plugin sdk | |
#include "plugin_vc.h" // Plugin-SDK was used for in game functions. | |
#include "includes.h" |
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
Dim X As String = "Hello" |