Skip to content

Latest commit

 

History

History
73 lines (59 loc) · 1.73 KB

platform.h

File metadata and controls

73 lines (59 loc) · 1.73 KB
 
Jan 5, 2004
Jan 5, 2004
1
2
3
4
5
6
7
8
#ifndef _INCL_PLATFORM_H_
#define _INCL_PLATFORM_H_
#ifdef __cplusplus
extern "C" {
#endif
May 28, 2004
May 28, 2004
9
10
11
#define PATCHERROR 0
#define PATCHSUCCESS 1
Jan 5, 2004
Jan 5, 2004
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
51
52
53
54
55
56
57
58
59
60
61
62
#if PLATFORM_WIN32
# include <io.h>
# define PATH_SEP "\\"
# if (defined _MSC_VER)
# define inline __inline
# define snprintf _snprintf
# define mkdir(x, y) _mkdir(x)
# define chdir(x) _chdir(x)
# endif
# define MAX_PATH 1024
#elif PLATFORM_UNIX
# include <unistd.h>
# include <sys/stat.h>
# include <sys/types.h>
# include <sys/param.h>
# include <fcntl.h>
# define PATH_SEP "/"
# define MAX_PATH MAXPATHLEN
#else
# #error please define your platform.
#endif
typedef struct MOJOPATCH_FILELIST
{
char *fname;
struct MOJOPATCH_FILELIST *next;
} file_list;
/* Your mainline calls this. */
int mojopatch_main(int argc, char **argv);
/* You call this for fatal error messages. */
void _fatal(const char *fmt, ...);
/* Call this for logging (not debug info). */
void _log(const char *fmt, ...);
/* Call this for logging (debug info). */
void _dlog(const char *fmt, ...);
/* platform-specific stuff you implement. */
int file_exists(const char *fname);
int file_is_directory(const char *fname);
int file_is_symlink(const char *fname);
file_list *make_filelist(const char *base); /* must use malloc(). */
int get_file_size(const char *fname, long *fsize);
char *get_current_dir(void);
char *get_realpath(const char *path);
int spawn_xdelta(const char *cmdline);
int update_version(const char *ver);
int calc_tmp_filenames(char **tmp1, char **tmp2);
Apr 22, 2005
Apr 22, 2005
63
int locate_product_by_identifier(const char *str, char *buf, size_t bufsize);
May 18, 2005
May 18, 2005
64
int get_product_version(const char *ident, char *buf, size_t bufsize);
Jan 5, 2004
Jan 5, 2004
65
66
67
68
69
70
71
72
#ifdef __cplusplus
}
#endif
#endif /* include-once blocker. */
/* end of platform.h ... */