initial commit

This commit is contained in:
i2p
2026-08-27 11:22:43 -06:00
commit c0db112be3
155 changed files with 5570 additions and 0 deletions
@@ -0,0 +1,12 @@
#include <windows.h>
#include <stdio.h>
#include <dsgetdc.h>
#include "badger_exports.h"
DECLSPEC_IMPORT DWORD WINAPI User32$MessageBoxA(HWND hWnd, LPCSTR lpText, LPCSTR lpCaption, UINT uType);
void coffee(char** argv, int argc, WCHAR** dispatch) {
BadgerDispatch(dispatch, "%s\n", "Executing MessageBox");
User32$MessageBoxA(NULL, "MsgBox Reflected", "Test", MB_OK);
BadgerDispatch(dispatch, "%s\n", "MessageBox Executed");
}