mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 16:45:47 -04:00
Initial community commit
This commit is contained in:
28
Src/Winamp/video.h
Normal file
28
Src/Winamp/video.h
Normal file
@ -0,0 +1,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
|
Reference in New Issue
Block a user