Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../../usr/include/libfstyp_module.h
Real path: /usr/include/libfstyp_module.h
Zurück
/* * Copyright (c) 2006, 2020, Oracle and/or its affiliates. All rights reserved. */ #ifndef _LIBFSTYP_MODULE_H #define _LIBFSTYP_MODULE_H /* * libfstyp: module interface */ #ifdef __cplusplus extern "C" { #endif #include <stdio.h> #include <sys/types.h> #include <libnvpair.h> #include <libfstyp.h> typedef struct fstyp_mod_handle *fstyp_mod_handle_t; /* * Modules are must to export these functions. * fstyp_mod_dump() is optional. */ int fstyp_mod_init(int __fd, off64_t __offset, fstyp_mod_handle_t *__handle); void fstyp_mod_fini(fstyp_mod_handle_t __handle); int fstyp_mod_ident(fstyp_mod_handle_t __handle); int fstyp_mod_get_attr(fstyp_mod_handle_t __handle, nvlist_t **__attr); int fstyp_mod_dump(fstyp_mod_handle_t __handle, FILE *__fout, FILE *__ferr); #ifdef __cplusplus } #endif #endif /* _LIBFSTYP_MODULE_H */