Chronos Plugins 5.4.0
This documentation covers the plugin interfaces definitions and an example implementation.
Loading...
Searching...
No Matches
Program.cs
Go to the documentation of this file.
1using System;
2using System.Windows.Forms;
3
9{
13 static class Program
14 {
18 [STAThread]
19 static void Main()
20 {
21 Application.EnableVisualStyles();
22 Application.SetCompatibleTextRenderingDefault(false);
23 Application.Run(new MockPlugin.RemoteAccessTester.MessageTesterForm());
24 }
25 }
26}
An example Chronos plugin. This plugin demonstrates how to write plugins for Chronos....
A minimal example program that shows how you could remotely control Chronos. The program does not int...
Definition: Program.cs:9
Interaction with Chronos crossing the process barrier. A normal Chronos plugin is a class library loa...
Class containing the entry point.
Definition: Program.cs:14
static void Main()
Entry point.
Definition: Program.cs:19
Shows how to communicate from an external program with a Plugin in order to trigger actions in Chrono...
Definition: RemoteTest.cs:11