Skip to content

Commit 7f5b493

Browse files
committed
Handles view
1 parent c90fab8 commit 7f5b493

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/dbg/_exports.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ DLL_EXPORT bool _dbg_isdebugging();
1818
DLL_EXPORT bool _dbg_isjumpgoingtoexecute(duint addr);
1919
DLL_EXPORT bool _dbg_addrinfoget(duint addr, SEGMENTREG segment, ADDRINFO* addrinfo);
2020
DLL_EXPORT bool _dbg_addrinfoset(duint addr, ADDRINFO* addrinfo);
21+
DLL_EXPORT long _dbg_gethandlecount();
22+
DLL_EXPORT long _dbg_enumhandles(duint* handles, unsigned char* typeNumbers, unsigned int* grantedAccess, unsigned int maxcount);
23+
DLL_EXPORT bool _dbg_gethandlename(char *name, char* typeName, size_t buffersize, duint remotehandle);
24+
DLL_EXPORT PROCESS_INFORMATION* _dbg_getProcessInformation();
2125
DLL_EXPORT int _dbg_bpgettypeat(duint addr);
2226
DLL_EXPORT bool _dbg_getregdump(REGDUMP* regdump);
2327
DLL_EXPORT bool _dbg_valtostring(const char* string, duint value);
@@ -31,3 +35,7 @@ DLL_EXPORT duint _dbg_sendmessage(DBGMSG type, void* param1, void* param2);
3135
#endif
3236

3337
#endif // _EXPORTS_H
38+
39+
#endif
40+
41+
#endif // _EXPORTS_H

0 commit comments

Comments
 (0)