Fixed file name case again
Hope it works this time
This commit is contained in:
parent
f0cfaa9839
commit
3459980b04
1 changed files with 0 additions and 52 deletions
|
@ -1,52 +0,0 @@
|
|||
#define UNICODE
|
||||
|
||||
#include "../Build/Mode.h"
|
||||
|
||||
#ifdef CLEAN
|
||||
// Enable XP styles
|
||||
#pragma comment(linker,"\"/manifestdependency:type='win32' \
|
||||
name='Microsoft.Windows.Common-Controls' version='6.0.0.0' \
|
||||
processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
|
||||
|
||||
// Window attributes
|
||||
#define BTNWIDTH 200
|
||||
#define BTNHEIGHT 30
|
||||
#define COLUMNS 3
|
||||
#define ROWS ((nPayloads + nPayloads%COLUMNS)/COLUMNS)
|
||||
#define SPACE 10
|
||||
#define WINDOWWIDTH COLUMNS * BTNWIDTH + (COLUMNS + 1)*SPACE
|
||||
#define WINDOWHEIGHT ROWS * BTNHEIGHT + (ROWS + 1)*SPACE + 32
|
||||
#endif
|
||||
|
||||
//#pragma once
|
||||
|
||||
#include <windows.h>
|
||||
#include <tlhelp32.h>
|
||||
#include <shlwapi.h>
|
||||
#include <psapi.h>
|
||||
#include <commctrl.h>
|
||||
|
||||
#include "../Build/Data.h"
|
||||
#include "Payloads/Payloads.h"
|
||||
|
||||
void start();
|
||||
|
||||
int random();
|
||||
void strReverseW(LPWSTR str);
|
||||
|
||||
PAYLOADHOST(payloadHostDefault);
|
||||
PAYLOADHOST(payloadHostVisual);
|
||||
|
||||
LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
|
||||
#ifndef CLEAN
|
||||
void killWindows();
|
||||
void killWindowsInstant();
|
||||
|
||||
DWORD WINAPI ripMessageThread(LPVOID);
|
||||
DWORD WINAPI watchdogThread(LPVOID);
|
||||
#else
|
||||
DWORD WINAPI keyboardThread(LPVOID lParam);
|
||||
extern BOOLEAN enablePayloads;
|
||||
BOOL CALLBACK CleanWindowsProc(HWND hwnd, LPARAM lParam);
|
||||
#endif
|
Reference in a new issue