-
Notifications
You must be signed in to change notification settings - Fork 15
/
ODbgScript.h
36 lines (24 loc) · 1 KB
/
ODbgScript.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#pragma once
using namespace std;
//static wchar_t wndprogclass[32]; // Name of progress window class
//static wchar_t wndlogclass[32]; // Name of log window class
//static wchar_t wndwatchclass[32];
static int focusonstop; // Foreground on pause
static bool dbgfocus=false;
static void* pmemforexec;
#define STRING_READSIZE 256
extc HWND _export cdecl DebugScript(const char* const filename);
#include "version.h"
#include "mru.h"
//For unique vars btw processes
//#pragma data_seg( ".GLOBALS" )
//#pragma data_seg()
// ODBG2 stuff :
int Mrunscript(t_table *pt,wchar_t *name,ulong index,int mode);
int Mscriptwindow(t_table *pt,wchar_t *name,ulong index,int mode);
int Mlogwindow(t_table *pt,wchar_t *name,ulong index,int mode);
int Mcommand(t_table *pt,wchar_t *name,ulong index,int mode);
int Mabout(t_table *pt,wchar_t *name,ulong index,int mode);
int Mtest(t_table *pt,wchar_t *name,ulong index,int mode);
// OllyLang object
static OllyLang* ollylang;