You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
codeine/src/app/extern.h

29 lines
587 B

// (C) 2005 Max Howell (max.howell@methylblue.com)
// See COPYING file for licensing information
#ifndef CODEINE_EXTERN_H
#define CODEINE_EXTERN_H
extern "C"
{
typedef struct xine_s xine_t;
}
class TQPopupMenu;
class TQWidget;
namespace Codeine
{
class VideoWindow;
class XineEngine;
VideoWindow* const engine(); //defined in xineEngine.h
VideoWindow* const videoWindow(); //defined in xineEngine.h
void showVideoSettingsDialog( TQWidget* );
void showXineConfigurationDialog( TQWidget*, xine_t* );
void insertAspectRatioMenuItems( TQPopupMenu* );
}
#endif