diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-12-29 16:24:33 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-12-29 16:24:33 +0000 |
commit | 943d0dd49820480de0dc57a3e1aa50d750ab4c65 (patch) | |
tree | bb1fd799c4ace483217080598af77a436f084087 /src/xine-engine/load_plugins.c | |
parent | cd4b6e4f2b5e59c62b3ebe759fa88ad9d5b3aba5 (diff) | |
download | xine-lib-943d0dd49820480de0dc57a3e1aa50d750ab4c65.tar.gz xine-lib-943d0dd49820480de0dc57a3e1aa50d750ab4c65.tar.bz2 |
getting rid of some MSVC specific parts
CVS patchset: 5955
CVS date: 2003/12/29 16:24:33
Diffstat (limited to 'src/xine-engine/load_plugins.c')
-rw-r--r-- | src/xine-engine/load_plugins.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 212a9d3df..6edc243b3 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: load_plugins.c,v 1.170 2003/12/14 23:23:17 f1rmb Exp $ + * $Id: load_plugins.c,v 1.171 2003/12/29 16:24:33 mroi Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -676,15 +676,8 @@ static void save_plugin_list(FILE *fp, xine_list_t *plugins) { while (node) { fprintf(fp, "[%s]\n", node->filename ); - -#ifndef _MSC_VER - fprintf(fp, "size=%llu\n", (unsigned long long) node->filesize ); - fprintf(fp, "mtime=%llu\n", (unsigned long long) node->filemtime ); -#else fprintf(fp, "size=%llu\n", (uint64_t) node->filesize ); fprintf(fp, "mtime=%llu\n", (uint64_t) node->filemtime ); -#endif /* _MSC_VER */ - fprintf(fp, "type=%d\n", node->info->type ); fprintf(fp, "api=%d\n", node->info->API ); fprintf(fp, "id=%s\n", node->info->id ); @@ -737,13 +730,7 @@ static void load_plugin_list(FILE *fp, xine_list_t *plugins) { ao_info_t *ao_info = NULL; post_info_t *post_info = NULL; int i; - -#ifndef _MSC_VER - unsigned long long llu; -#else uint64_t llu; -#endif /* _MSC_VER */ - unsigned long lu; char line[1024]; char *value; |