1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-12 13:44:56 +02:00

vout_window: make zero an error value for window type

This commit is contained in:
Rémi Denis-Courmont 2012-07-05 17:42:50 +03:00
parent a6f0eddb49
commit 6721871c96

View File

@ -41,6 +41,7 @@ typedef struct vout_window_sys_t vout_window_sys_t;
* Window handle type
*/
enum {
VOUT_WINDOW_TYPE_INVALID=0,
VOUT_WINDOW_TYPE_XID,
VOUT_WINDOW_TYPE_HWND,
VOUT_WINDOW_TYPE_NSOBJECT,
@ -66,7 +67,7 @@ typedef struct {
bool is_standalone;
/* Window handle type */
int type;
unsigned type;
/* Window position hint */
int x;