Codebase list gtkwave / 457be729-5368-47f5-83d0-c4fdf3c09209/main src / savefile.h
457be729-5368-47f5-83d0-c4fdf3c09209/main

Tree @457be729-5368-47f5-83d0-c4fdf3c09209/main (Download .tar.gz)

savefile.h @457be729-5368-47f5-83d0-c4fdf3c09209/mainraw · history · blame

/*
 * Copyright (c) Tony Bybell 2012-2013.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 */

#include "globals.h"
#include <time.h>

#ifdef MAC_INTEGRATION
#include <gtkosxapplication.h>
#endif

#ifndef __WAVE_SAVEFILE_H__
#define __WAVE_SAVEFILE_H__

/* These should eventually have error values */
void write_save_helper(const char *savnam, FILE *file);
int read_save_helper(char *wname, char **dumpfile, char **savefile, off_t *dumpsiz, time_t *dumptim, int *opt_vcd); /* -1 = error, 0+ = number of lines read */
char *append_array_row(nptr n);

int parsewavline(char *w, char *alias, int depth);
int parsewavline_lx2(char *w, char *alias, int depth);

char *find_dumpfile(char *orig_save, char *orig_dump, char *this_save);

#ifdef MAC_INTEGRATION
gboolean deal_with_finder_open(GtkosxApplication *app, gchar *path, gpointer user_data);
gboolean deal_with_termination(GtkosxApplication *app, gpointer user_data);
#endif

gboolean deal_with_rpc_open(const gchar *path, gpointer user_data);
gboolean deal_with_rpc_open_2(const gchar *path, gpointer user_data, gboolean is_save_file);
gboolean process_finder_names_queued(void);
char *process_finder_extract_queued_name(void);
gboolean process_finder_name_integration(void);

void read_save_helper_relative_init(char *wname);
int suffix_check(const char *s, const char *sfx);

char *extract_dumpname_from_save_file(char *lcname, gboolean *modified, int *opt_vcd);
char *get_relative_adjusted_name(char *sfn, char *dfn, char *lcname);

#endif