forked from realgam3/x64dbg-python
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
formatting + updated pluginsdk to latest version (26-6-2016)
- Loading branch information
Showing
91 changed files
with
23,000 additions
and
13,101 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@echo off | ||
call install32.bat | ||
call install64.bat | ||
xcopy release\* ..\x64dbg\bin\ /S /Y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
#ifndef _PLUGINMAIN_H | ||
#define _PLUGINMAIN_H | ||
|
||
#include <windows.h> | ||
#include "pluginsdk\_plugins.h" | ||
|
||
#ifndef DLL_EXPORT | ||
#define DLL_EXPORT __declspec(dllexport) | ||
#endif //DLL_EXPORT | ||
|
||
//superglobal variables | ||
extern int pluginHandle; | ||
extern HWND hwndDlg; | ||
extern int hMenu; | ||
extern int hMenuDisasm; | ||
extern int hMenuDump; | ||
extern int hMenuStack; | ||
|
||
#define plugin_name "x64dbg-python" | ||
#define plugin_version 1 | ||
|
||
#ifdef __cplusplus | ||
extern "C" | ||
{ | ||
#endif | ||
|
||
DLL_EXPORT bool pluginit(PLUG_INITSTRUCT* initStruct); | ||
DLL_EXPORT bool plugstop(); | ||
DLL_EXPORT void plugsetup(PLUG_SETUPSTRUCT* setupStruct); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif //_PLUGINMAIN_H | ||
#ifndef _PLUGINMAIN_H | ||
#define _PLUGINMAIN_H | ||
|
||
#include <windows.h> | ||
#include "pluginsdk\_plugins.h" | ||
|
||
#ifndef DLL_EXPORT | ||
#define DLL_EXPORT __declspec(dllexport) | ||
#endif //DLL_EXPORT | ||
|
||
//superglobal variables | ||
extern int pluginHandle; | ||
extern HWND hwndDlg; | ||
extern int hMenu; | ||
extern int hMenuDisasm; | ||
extern int hMenuDump; | ||
extern int hMenuStack; | ||
|
||
#define plugin_name "x64dbg-python" | ||
#define plugin_version 1 | ||
|
||
#ifdef __cplusplus | ||
extern "C" | ||
{ | ||
#endif | ||
|
||
DLL_EXPORT bool pluginit(PLUG_INITSTRUCT* initStruct); | ||
DLL_EXPORT bool plugstop(); | ||
DLL_EXPORT void plugsetup(PLUG_SETUPSTRUCT* setupStruct); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif //_PLUGINMAIN_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
#ifndef _DEVICENAMERESOLVER_H | ||
#define _DEVICENAMERESOLVER_H | ||
|
||
#include <windows.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" | ||
{ | ||
#endif | ||
|
||
__declspec(dllexport) bool DevicePathToPathW(const wchar_t* szDevicePath, wchar_t* szPath, size_t nSize); | ||
__declspec(dllexport) bool DevicePathToPathA(const char* szDevicePath, char* szPath, size_t nSize); | ||
__declspec(dllexport) bool DevicePathFromFileHandleW(HANDLE hFile, wchar_t* szDevicePath, size_t nSize); | ||
__declspec(dllexport) bool DevicePathFromFileHandleA(HANDLE hFile, char* szDevicePath, size_t nSize); | ||
__declspec(dllexport) bool PathFromFileHandleW(HANDLE hFile, wchar_t* szPath, size_t nSize); | ||
__declspec(dllexport) bool PathFromFileHandleA(HANDLE hFile, char* szPath, size_t nSize); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif // _DEVICENAMERESOLVER_H | ||
#ifndef _DEVICENAMERESOLVER_H | ||
#define _DEVICENAMERESOLVER_H | ||
|
||
#include <windows.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" | ||
{ | ||
#endif | ||
|
||
__declspec(dllexport) bool DevicePathToPathW(const wchar_t* szDevicePath, wchar_t* szPath, size_t nSize); | ||
__declspec(dllexport) bool DevicePathToPathA(const char* szDevicePath, char* szPath, size_t nSize); | ||
__declspec(dllexport) bool DevicePathFromFileHandleW(HANDLE hFile, wchar_t* szDevicePath, size_t nSize); | ||
__declspec(dllexport) bool DevicePathFromFileHandleA(HANDLE hFile, char* szDevicePath, size_t nSize); | ||
__declspec(dllexport) bool PathFromFileHandleW(HANDLE hFile, wchar_t* szPath, size_t nSize); | ||
__declspec(dllexport) bool PathFromFileHandleA(HANDLE hFile, char* szPath, size_t nSize); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif // _DEVICENAMERESOLVER_H |
Oops, something went wrong.