2009-08-28 00:52:11 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace NUS_Downloader
|
|
|
|
|
{
|
|
|
|
|
class NUS
|
|
|
|
|
{
|
|
|
|
|
// NUS Urls
|
|
|
|
|
const string NUS_Wii = "http://nus.cdn.shop.wii.com/ccs/download/";
|
|
|
|
|
const string NUS_DSi = "http://nus.cdn.t.shop.nintendowifi.net/ccs/download/";
|
|
|
|
|
|
|
|
|
|
// NUS Files
|
|
|
|
|
const string Ticket = "cetk";
|
|
|
|
|
const string TMD = "tmd";
|
|
|
|
|
|
|
|
|
|
// Report Status back in EventHandler
|
|
|
|
|
public delegate void StatusChangedEventHandler(string status);
|
2010-06-29 18:06:15 +02:00
|
|
|
|
//public event StatusChangedEventHandler StatusChanged;
|
2009-08-28 00:52:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|