mirror of
https://github.com/mpv-player/mpv
synced 2024-12-14 19:05:33 +00:00
0842caf6f0
-- Mark git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8746 b3059339-0415-0410-9bf9-f77b7e298cf2
10 lines
354 B
C
10 lines
354 B
C
/* This file (C) Mark Zealey <mark@zealos.org 2002, released under GPL */
|
|
#ifndef __GEOMETRY_H
|
|
#define __GEOMETRY_H
|
|
|
|
extern char *vo_geometry;
|
|
int geometryFull(int *pwidth, int *pheight, int *xpos, int *ypos, int scrw, int scrh, int vidw, int vidh);
|
|
int geometry(int *xpos, int *ypos, int scrw, int scrh, int vidw, int vidh);
|
|
|
|
#endif /* !__GEOMETRY_H */
|