Skip to content

Instantly share code, notes, and snippets.

View JockiHendry's full-sized avatar

Jocki Hendry JockiHendry

View GitHub Profile
@JockiHendry
JockiHendry / main.c
Last active March 14, 2018 03:08
Visual C++ 2010 code for displaying NTFS Change Journal File
#include "stdafx.h"
#include <Windows.h>
#include <WinIoCtl.h>
int _tmain(int argc, _TCHAR* argv[])
{
// Mengatur console
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_SCREEN_BUFFER_INFO screenBufferInfo;
SetConsoleTitle(L"Change Journal Viewer by TheSolidSnake");