Mercurial > msvpvf
view include/common.h @ 88:af4ed765c1ac
*: add IUP GUI
a lot simpler than win32, but I assume there's more going on in
the background that I don't know about :)
author | Paper <paper@tflc.us> |
---|---|
date | Mon, 14 Jul 2025 02:39:24 -0400 |
parents | 8f90d5addda9 |
children |
line wrap: on
line source
#ifndef msvpvf_common_h #define msvpvf_common_h #include <stdio.h> #include <stdint.h> #include <stddef.h> /* size_t */ #include <stdarg.h> /* windows clobbers ARRAYSIZE() */ #define ARRAY_SIZE(x) \ (sizeof(x)/sizeof((x)[0])) enum types { TYPES_UNKNOWN = 0, TYPES_VF, TYPES_VEG }; extern const char *type_names[]; int set_file_information(FILE* target, uint8_t version, enum types type); int get_file_information(FILE* input, uint8_t* version, enum types* type); int copy_file(FILE *source, FILE *target); /* simple malloc -> memcpy (memdup ?) */ char *str_ndup(const char *str, size_t sz); /* str_ndup(str, strlen(str)) */ char *str_dup(const char *str); char *msvpvf_vasprintf(const char *format, va_list ap); char *msvpvf_asprintf(const char *format, ...); #endif /* msvpvf_common_h */