/* * Part of ncdc - a discord client for the console * Copyright (C) 2019 Florian Stinglmayr * * 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 . */ #ifndef DC_REFABLE_H #define DC_REFABLE_H typedef void (*dc_cleanup_t)(void *); typedef struct { int ref; dc_cleanup_t cleanup; int debug; } dc_refable_t; void *dc_ref(void *); void dc_unref(void *); void dc_ref_debug(void *); #endif