diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2008-02-26 20:53:38 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2008-02-26 20:53:38 +0200 |
commit | edc6b13d19d832ec56b63007ccc84a0f43cf2629 (patch) | |
tree | 40ec111645cdb8e20a40cb4b153e743d0c0b63d7 /rpmio/rpmio_internal.h | |
parent | 41ebd1cd50c780c247877bf9174aacdd55ca4923 (diff) | |
download | librpm-tizen-edc6b13d19d832ec56b63007ccc84a0f43cf2629.tar.gz librpm-tizen-edc6b13d19d832ec56b63007ccc84a0f43cf2629.tar.bz2 librpm-tizen-edc6b13d19d832ec56b63007ccc84a0f43cf2629.zip |
Remove the last remains of unused and unnecesary rpmio rpc vectors
Diffstat (limited to 'rpmio/rpmio_internal.h')
-rw-r--r-- | rpmio/rpmio_internal.h | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/rpmio/rpmio_internal.h b/rpmio/rpmio_internal.h index 753876b27..9f67a7a61 100644 --- a/rpmio/rpmio_internal.h +++ b/rpmio/rpmio_internal.h @@ -126,44 +126,6 @@ typedef void * (*fdio_ffileno_function_t) (FD_t fd); */ typedef int (*fdio_fflush_function_t) (FD_t fd); - -/** \ingroup rpmrpc - * \name RPMRPC Vectors. - */ - -/** - */ -typedef int (*fdio_mkdir_function_t) (const char * path, mode_t mode); - -/** - */ -typedef int (*fdio_chdir_function_t) (const char * path); - -/** - */ -typedef int (*fdio_rmdir_function_t) (const char * path); - -/** - */ -typedef int (*fdio_rename_function_t) (const char * oldpath, const char * newpath); - -/** - */ -typedef int (*fdio_unlink_function_t) (const char * path); - -/** - */ -typedef int (*fdio_stat_function_t) (const char * path, struct stat * st); - -/** - */ -typedef int (*fdio_lstat_function_t) (const char * path, struct stat * st); - -/** - */ -typedef int (*fdio_access_function_t) (const char * path, int amode); - - /** \ingroup rpmio */ struct FDIO_s { @@ -181,12 +143,6 @@ struct FDIO_s { fdio_fopen_function_t _fopen; fdio_ffileno_function_t _ffileno; fdio_fflush_function_t _fflush; - - fdio_mkdir_function_t _mkdir; - fdio_chdir_function_t _chdir; - fdio_rmdir_function_t _rmdir; - fdio_rename_function_t _rename; - fdio_unlink_function_t _unlink; }; /** |