1 2 3 4 5 6 7 8 9 10 11 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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
//
// "$Id: gui-common.h 733 2006-11-30 21:59:27Z mike $"
//
// ESP Software Wizard common header file for the ESP Package Manager (EPM).
//
// Copyright 1999-2006 by Easy Software Products.
//
// 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, or (at your option)
// any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
//
// Include necessary headers...
//
#include "epmstring.h"
#include "epm.h"
#include <stdio.h>
#include <stdlib.h>
#include <FL/Fl_Help_View.H>
//
// Distribution structures...
//
struct gui_depend_t //// Dependencies
{
int type; // Type of dependency
char product[64]; // Name of product or file
int vernumber[2]; // Version number(s)
};
struct gui_dist_t //// Distributions
{
int type; // Package type
char product[64]; // Product name
char name[256]; // Product long name
char version[32]; // Product version
int vernumber; // Version number
int num_depends; // Number of dependencies
gui_depend_t *depends; // Dependencies
int rootsize, // Size of root partition files in kbytes
usrsize; // Size of /usr partition files in kbytes
char *filename; // Name of package file
};
struct gui_intype_t //// Installation types
{
char name[80]; // Type name
char label[80]; // Type label
int num_products; // Number of products to install (0 = select)
int products[200]; // Products to install
int size; // Size of products in kbytes
};
//
// Define a C API function type for comparisons...
//
extern "C" {
typedef int (*compare_func_t)(const void *, const void *);
}
//
// Globals...
//
#ifdef _DEFINE_GLOBALS_
# define VAR
#else
# define VAR extern
#endif // _DEFINE_GLOBALS_
VAR int NumDists; // Number of distributions in directory
VAR gui_dist_t *Dists; // Distributions in directory
VAR int NumInstalled; // Number of distributions installed
VAR gui_dist_t *Installed; // Distributions installed
VAR int NumInstTypes; // Number of installation types
VAR gui_intype_t InstTypes[8]; // Installation types
//
// Prototypes...
//
void gui_add_depend(gui_dist_t *d, int type, const char *name,
int lowver, int hiver);
gui_dist_t *gui_add_dist(int *num_d, gui_dist_t **d);
gui_dist_t *gui_find_dist(const char *name, int num_d, gui_dist_t *d);
void gui_get_installed(void);
void gui_load_file(Fl_Help_View *hv, const char *filename);
int gui_sort_dists(const gui_dist_t *d0, const gui_dist_t *d1);
//
// End of "$Id: gui-common.h 733 2006-11-30 21:59:27Z mike $".
//
|