mirror of
https://github.com/mupen64plus/mupen64plus-oldsvn.git
synced 2025-04-02 10:52:35 -04:00
53 lines
1.7 KiB
C
53 lines
1.7 KiB
C
/***************************************************************************
|
|
vcrcomp_dialog.h - Handles VCR mode GUI elements
|
|
----------------------------------------------------------------------------
|
|
Began : Sat Nov 9 2002
|
|
Copyright : (C) 2002 by blight
|
|
Email : blight@Ashitaka
|
|
****************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifdef VCR_SUPPORT
|
|
|
|
#ifndef __VCRCOMP_DIALOG_H__
|
|
#define __VCRCOMP_DIALOG_H__
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
typedef struct
|
|
{
|
|
GtkWidget *dialog;
|
|
GtkWidget *notebook;
|
|
|
|
GtkWidget *videoPage;
|
|
GtkWidget *videoCodecCombo;
|
|
GList *videoCodecGList;
|
|
GtkWidget *videoAttribCombo;
|
|
GList *videoAttribGList;
|
|
GtkWidget *videoAttribEntry;
|
|
GtkWidget *videoAttribChangeButton;
|
|
|
|
GtkWidget *audioPage;
|
|
GtkWidget *audioCodecCombo;
|
|
GList *audioCodecGList;
|
|
GtkWidget *audioAttribCombo;
|
|
GList *audioAttribGList;
|
|
GtkWidget *audioAttribEntry;
|
|
GtkWidget *audioAttribChangeButton;
|
|
} SVcrCompDialog;
|
|
|
|
extern SVcrCompDialog g_VcrCompDialog;
|
|
|
|
int create_vcrCompDialog( void );
|
|
|
|
#endif // __VCRCOMP_DIALOG_H__
|
|
|
|
#endif // VCR_SUPPORT
|