├── .gitignore ├── Demos ├── Console │ ├── SCForm.Console.dfm │ ├── SCForm.Console.pas │ ├── Services.Console.dpr │ ├── Services.Console.dproj │ └── Services.Console.res ├── Demos.groupproj └── FirebirdService │ ├── FirebirdService.MainForm.dfm │ ├── FirebirdService.MainForm.pas │ ├── FirebirdService.dpr │ ├── FirebirdService.dproj │ └── FirebirdService.res ├── LICENSE ├── README.md ├── Windows.ServiceManager.Consts.pas ├── Windows.ServiceManager.Types.pas └── Windows.ServiceManager.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/.gitignore -------------------------------------------------------------------------------- /Demos/Console/SCForm.Console.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/Demos/Console/SCForm.Console.dfm -------------------------------------------------------------------------------- /Demos/Console/SCForm.Console.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/Demos/Console/SCForm.Console.pas -------------------------------------------------------------------------------- /Demos/Console/Services.Console.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/Demos/Console/Services.Console.dpr -------------------------------------------------------------------------------- /Demos/Console/Services.Console.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/Demos/Console/Services.Console.dproj -------------------------------------------------------------------------------- /Demos/Console/Services.Console.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/Demos/Console/Services.Console.res -------------------------------------------------------------------------------- /Demos/Demos.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/Demos/Demos.groupproj -------------------------------------------------------------------------------- /Demos/FirebirdService/FirebirdService.MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/Demos/FirebirdService/FirebirdService.MainForm.dfm -------------------------------------------------------------------------------- /Demos/FirebirdService/FirebirdService.MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/Demos/FirebirdService/FirebirdService.MainForm.pas -------------------------------------------------------------------------------- /Demos/FirebirdService/FirebirdService.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/Demos/FirebirdService/FirebirdService.dpr -------------------------------------------------------------------------------- /Demos/FirebirdService/FirebirdService.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/Demos/FirebirdService/FirebirdService.dproj -------------------------------------------------------------------------------- /Demos/FirebirdService/FirebirdService.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/Demos/FirebirdService/FirebirdService.res -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/README.md -------------------------------------------------------------------------------- /Windows.ServiceManager.Consts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/Windows.ServiceManager.Consts.pas -------------------------------------------------------------------------------- /Windows.ServiceManager.Types.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/Windows.ServiceManager.Types.pas -------------------------------------------------------------------------------- /Windows.ServiceManager.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommiPrami/DelphiServiceManager/HEAD/Windows.ServiceManager.pas --------------------------------------------------------------------------------