just the same include reordering as in vo_xv (codemetics :)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11691 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2003-12-27 19:45:54 +00:00
parent 81024b89f6
commit a5bd70e04f
1 changed files with 15 additions and 15 deletions

View File

@ -19,6 +19,21 @@
#include "x11_common.h"
#ifdef HAVE_SHM
#include <sys/ipc.h>
#include <sys/shm.h>
#include <X11/extensions/XShm.h>
static int Shmem_Flag;
//static int Quiet_Flag; Here also what is this for. It's used but isn't inited ?
static XShmSegmentInfo Shminfo[1];
static int gXErrorFlag;
static int CompletionType=-1;
/* since it doesn't seem to be defined on some platforms */
int XShmGetEventBase( Display* );
#endif
#include "fastmemcpy.h"
#include "sub.h"
@ -61,20 +76,6 @@ static int int_pause;
static int Flip_Flag;
static int zoomFlag;
#ifdef HAVE_SHM
#include <sys/ipc.h>
#include <sys/shm.h>
#include <X11/extensions/XShm.h>
static int Shmem_Flag;
//static int Quiet_Flag; Here also what is this for. It's used but isn't inited ?
static XShmSegmentInfo Shminfo[1];
static int gXErrorFlag;
static int CompletionType=-1;
/* since it doesn't seem to be defined on some platforms */
int XShmGetEventBase( Display* );
#endif
static uint32_t image_width;
static uint32_t image_height;
@ -672,4 +673,3 @@ static uint32_t control(uint32_t request, void *data, ...)
}
return VO_NOTIMPL;
}