25 lines
515 B
C#
25 lines
515 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace m3uTool
|
|
{
|
|
public partial class M3uToAac : Form
|
|
{
|
|
public class Mp3ToAacConversionOptions
|
|
{
|
|
string[] mInputFilenames;
|
|
string[] mOutputFilenames;
|
|
|
|
|
|
}
|
|
public M3uToAac()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |