mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-06-14 15:20:32 +02:00
* Quadrupled the length of strings in 'struct rd_cart' in the 'rivwebcapi' to accomodate UTF-8 characters.
35 lines
943 B
C
35 lines
943 B
C
/* rd_group.h
|
|
*
|
|
* Header for the RD_GROUP Structure Rivendell Access Library
|
|
*
|
|
* (C) Copyright 2015 Todd Baker <bakert@rfa.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
*/
|
|
#ifndef RD_GROUP_H
|
|
#define RD_GROUP_H
|
|
|
|
struct rd_group {
|
|
char grp_name[41];
|
|
char grp_desc[1021];
|
|
unsigned grp_default_cart_type;
|
|
unsigned grp_lo_limit;
|
|
unsigned grp_hi_limit;
|
|
int grp_shelf_life;
|
|
char grp_default_title[1021];
|
|
int grp_enforce_range;
|
|
int grp_report_tfc;
|
|
int grp_report_mus;
|
|
int grp_now_next;
|
|
char grp_color[8];
|
|
char grp_reserved[457];
|
|
};
|
|
|
|
|
|
#endif // RD_GROUP_H
|