blob: fb101a4efbd8a6b14b6df8fa9e82ed70c4f474e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef _VIDEO_H
#define _VIDEO_H
#include "main.h"
#include "wa_ipc.h"
#ifdef __cplusplus
extern "C" {
#endif
void SetExteriorSize(int width, int height);
int video_getNumAudioTracks();
int video_getNumVideoTracks();
int video_getCurAudioTrack();
int video_getCurVideoTrack();
int video_setCurAudioTrack(int track);
int video_setCurVideoTrack(int track);
void Vid_Cmd( windowCommand *wc);
HWND videoGetHwnd();
DWORD videoGetWidthHeightDWORD();
void *video_getIVideoOutput();
void videoAdSizeChanged();
void videoReinit();
void videoGoFullscreen();
void videoSetFlip(int on);
#ifdef __cplusplus
}
#endif
#endif
|