📄 dynload.h
字号:
/* * dynload.h - dynamic server loading interface * * Copyright (C) 2001 Stefan Jahn <stefan@lkcc.org> * * This 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 2, or (at your option) * any later version. * * This software 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 package; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * * $Id: dynload.h,v 1.5 2001/06/07 17:22:01 ela Exp $ * */#ifndef __DYNLOAD_H__#define __DYNLOAD_H__ 1#include "libserveez/defines.h"/* Structure holding a shared libraries info. */typedef struct{ void *handle; /* its handle */ char *file; /* the shared libraries filename */ int ref; /* reference counter */}dyn_library_t;__BEGIN_DECLSSERVEEZ_API void svz_dynload_init __P ((void));SERVEEZ_API void svz_dynload_finalize __P ((void));SERVEEZ_API svz_servertype_t *svz_servertype_load __P ((char *description));SERVEEZ_API int svz_servertype_unload __P ((char *description));SERVEEZ_API void svz_dynload_path_set __P ((svz_array_t *paths));SERVEEZ_API svz_array_t *svz_dynload_path_get __P ((void));__END_DECLS#endif /* not __DYNLOAD_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -