mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
861b524e7a
divelist.c: get_dive_date_string() get_short_dive_date_string() get_trip_date_string() MinGW support for *printf and parameter positions (e.g. %1$d) is horribly broken. Instead of implementing *proper* support for this feature Microsoft decide to ignore the standard (again) and they implement new functions with the '_p' suffix, such as 'sprintf_p', which seem to be available from a 2003 runtime. To top that 'sprintf_p' is not really a 'sprintf' but rather a 'snprintf'. It seems that the MinGW people ignore the issue and do not provide wrappers of any sort, or at least for the current recommended compiler for Qt 4.8.5 on Windows - which is a 4.4.0. A note of warning; inspecting how MinGW does certain things in headers such as stdio.h, can ensue bad dreams or other negative effects on to the viewer. This forces us to move the following functions from the 'back-end' (divelist.c) to the 'front-end' (qt-gui.cpp) and use QString. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
#ifndef DIVELIST_H
|
|
#define DIVELIST_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct dive;
|
|
|
|
extern void update_cylinder_related_info(struct dive *);
|
|
extern void mark_divelist_changed(int);
|
|
extern int unsaved_changes(void);
|
|
extern void remove_autogen_trips(void);
|
|
extern double init_decompression(struct dive * dive);
|
|
|
|
/* divelist core logic functions */
|
|
extern void process_dives(bool imported, bool prefer_imported);
|
|
extern char *get_nitrox_string(struct dive *dive);
|
|
|
|
extern dive_trip_t *find_trip_by_idx(int idx);
|
|
|
|
extern int trip_has_selected_dives(dive_trip_t *trip);
|
|
extern void get_dive_gas(struct dive *dive, int *o2_p, int *he_p, int *o2low_p);
|
|
extern int get_divenr(struct dive *dive);
|
|
extern dive_trip_t *find_matching_trip(timestamp_t when);
|
|
extern void remove_dive_from_trip(struct dive *dive);
|
|
extern dive_trip_t *create_and_hookup_trip_from_dive(struct dive *dive);
|
|
extern void autogroup_dives(void);
|
|
extern struct dive *merge_two_dives(struct dive *a, struct dive *b);
|
|
extern bool consecutive_selected();
|
|
extern void select_dive(int idx);
|
|
extern void deselect_dive(int idx);
|
|
|
|
#ifdef DEBUG_TRIP
|
|
extern void dump_selection(void);
|
|
extern void dump_trip_list(void);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|