Skip to content

Latest commit

 

History

History
76 lines (61 loc) · 1.82 KB

platform.h

File metadata and controls

76 lines (61 loc) · 1.82 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
#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, ...);
May 25, 2004
May 25, 2004
52
53
int version_ok(const char *ver, const char *allowed);
Jan 5, 2004
Jan 5, 2004
54
55
56
57
58
59
60
61
62
63
64
65
/* 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);
int show_and_install_readme(const char *fname, const char *text);
May 27, 2004
May 27, 2004
66
67
int chdir_by_identifier(const char *name, const char *str,
const char *ver, const char *newver);
Jan 5, 2004
Jan 5, 2004
68
69
70
71
72
73
74
75
#ifdef __cplusplus
}
#endif
#endif /* include-once blocker. */
/* end of platform.h ... */