forked from alexander-pick/patchdiff2_ida6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
win_fct.hpp
50 lines (37 loc) · 1.33 KB
/
win_fct.hpp
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
Patchdiff2
Portions (C) 2011 Alexander Pick
Portions (C) 2010 Nicolas Pouvesle
Portions (C) 2007 - 2009 Tenable Network Security, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __WIN_FCT_H__
#define __WIN_FCT_H__
#include "system.hpp"
#ifdef __EA64__
#define IDA_EXEC "idag64.exe"
#else
#define IDA_EXEC "idag.exe"
#endif
// Preference functions
bool os_get_pref_int(char *, int *);
// System functions
int os_execute_command(char *, bool, void *);
void os_copy_to_clipboard(char *);
long os_get_pid();
int os_unlink(const char *path);
void os_tempname(char *, size_t, char *);
// Shared memory functions
bool os_ipc_send(void *, int, idata_t *);
bool os_ipc_recv(void *, int, idata_t *);
bool os_ipc_init(void **, long, int);
bool os_ipc_close(void *);
#endif