Microsoft Visual C++ 2005 Redistributable Package (x64)
Microsoft Visual C++ 2005 Redistributable Package (x86)
Microsoft Visual C++ 2005 SP1 Redistributable Package (x86)
#include <windows.h> | |
#include <stdio.h> | |
#include <assert.h> // for potential error handling, change to real errors in your code | |
int main() | |
{ | |
HANDLE pipe = CreateNamedPipeW( | |
L"\\\\.\\pipe\\lolcat", | |
PIPE_ACCESS_INBOUND | FILE_FLAG_FIRST_PIPE_INSTANCE | FILE_FLAG_OVERLAPPED, | |
PIPE_TYPE_BYTE | PIPE_READMODE_BYTE | PIPE_WAIT | PIPE_REJECT_REMOTE_CLIENTS, |
@echo off | |
setlocal EnableDelayedExpansion | |
set BUILD_CACHE=%~dp0\_build_cache.cmd | |
if exist "!BUILD_CACHE!" ( | |
rem cache file exists, so call it to set env variables very fast | |
call "!BUILD_CACHE!" | |
) else ( | |
if not exist "%VS2019INSTALLDIR%\VC\Auxiliary\Build\vcvarsall.bat" ( |
#include <windows.h> | |
extern "C" | |
{ | |
#pragma section(".CRT$XIA",long,read) | |
#pragma section(".CRT$XIZ",long,read) | |
#pragma section(".CRT$XCA",long,read) | |
#pragma section(".CRT$XCZ",long,read) | |
#pragma section(".CRT$XPA",long,read) | |
#pragma section(".CRT$XPZ",long,read) |
// gcc test.c `pkg-config --cflags --libs gtk+-3.0 gdk-3.0` -lX11 && ./a.out | |
#include <X11/Xlib.h> | |
#include <unistd.h> | |
#include <stdio.h> | |
#include <gtk/gtk.h> | |
#include <gdk/gdkx.h> | |
static void my_gtk_realize(GtkWidget* widget, gpointer user) |
// compile this to hook.dll | |
// for example, with MSVC: cl.exe /LD /MT /O2 hook.c /Fehook.dll | |
#include <windows.h> | |
// get this from https://github.com/kubo/plthook | |
#include "plthook_win32.c" | |
static plthook_t* hook; |
// floor function for floats with SSE1 or SSE2 | |
#include <emmintrin.h> | |
#include <smmintrin.h> | |
#ifdef _MSC_VER | |
#include <intrin.h> | |
#else | |
#define __rdtsc() __builtin_ia32_rdtsc() | |
#endif |
#define WIN32_LEAN_AND_MEAN | |
#include <windows.h> | |
#include <dwrite.h> | |
#include <intrin.h> | |
#pragma comment (lib, "gdi32.lib") | |
#pragma comment (lib, "user32.lib") | |
#pragma comment (lib, "dwrite.lib") | |
#define CHECK(x) do { if (!(x)) __debugbreak(); } while (0) |
#include <stddef.h> | |
#include <stdint.h> | |
#include <intrin.h> | |
// see aeshashbody in https://github.com/golang/go/blob/master/src/runtime/asm_amd64.s | |
// this is initialized on process startup with random from system | |
static __declspec(align(16)) uint8_t aeskeysched[128]; | |
static __declspec(align(16)) const uint8_t masks[16][16] = |
#!/usr/bin/env python3 | |
import sys | |
import tarfile | |
import zipfile | |
from pathlib import Path | |
src = sys.argv[1] | |
dst = Path(src).name + ".zip" |