ncdc/libdc/include/dc/refable.h

36 lines
1.0 KiB
C
Raw Permalink Normal View History

2019-07-20 15:22:51 +02:00
/*
* Part of ncdc - a discord client for the console
* Copyright (C) 2019 Florian Stinglmayr <fstinglmayr@gmail.com>
*
* 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 <https://www.gnu.org/licenses/>.
*/
2019-06-25 14:52:38 +02:00
#ifndef DC_REFABLE_H
#define DC_REFABLE_H
typedef void (*dc_cleanup_t)(void *);
typedef struct {
int ref;
dc_cleanup_t cleanup;
int debug;
2019-06-25 14:52:38 +02:00
} dc_refable_t;
void *dc_ref(void *);
void dc_unref(void *);
void dc_ref_debug(void *);
2019-06-25 14:52:38 +02:00
#endif