Codebase list mdp-src / 3140fd8b-7b7a-46fa-900e-c33bb7f87005/main include / url.h
3140fd8b-7b7a-46fa-900e-c33bb7f87005/main

Tree @3140fd8b-7b7a-46fa-900e-c33bb7f87005/main (Download .tar.gz)

url.h @3140fd8b-7b7a-46fa-900e-c33bb7f87005/mainraw · history · blame

#if !defined( URL_H )
#define URL_H

/*
 * An object to store all urls of a slide.
 * Copyright (C) 2018 Michael Goehler
 *
 * This file is part of mdp.
 *
 * 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 3 of the License, 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 *
 * function: url_init to intialize a new url object
 */

typedef struct _url_t {
    wchar_t *link_name;
    wchar_t *target;
    int x;
    int y;
    struct _url_t *next;
} url_t;

void url_init(void);
int url_add(const wchar_t *link_name, int link_name_length, const wchar_t *target, int target_length, int x, int y);
wchar_t* url_get_target(int index);
wchar_t* url_get_name(int index);
int url_get_amount(void);
void url_purge(void);
void url_dump(void);
int url_count_inline(const wchar_t *line);
int url_len_inline(const wchar_t *value);

#endif // !defined( URL_H )