mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 01:39:17 +01:00
25 lines
523 B
C#
25 lines
523 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.ServiceProcess;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace DS4Service
|
|||
|
{
|
|||
|
static class Program
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// The main entry point for the application.
|
|||
|
/// </summary>
|
|||
|
static void Main()
|
|||
|
{
|
|||
|
ServiceBase[] ServicesToRun;
|
|||
|
ServicesToRun = new ServiceBase[]
|
|||
|
{
|
|||
|
new DS4Service()
|
|||
|
};
|
|||
|
ServiceBase.Run(ServicesToRun);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|