mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-06-12 06:10:27 +02:00
* Quadrupled the length of strings in 'struct rd_cart' in the 'rivwebcapi' to accomodate UTF-8 characters.
26 lines
632 B
C
26 lines
632 B
C
/* rd_schedcodes.h
|
|
*
|
|
* Header for the RDSCHEDCODES 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_SCHEDCODES_H
|
|
#define RD_SCHEDCODES_H
|
|
|
|
struct rd_schedcodes {
|
|
char code[41];
|
|
char description[1021];
|
|
};
|
|
|
|
|
|
#endif //RD_SCHEDCODES_H
|