Beispiel #1
0
        public override void Action()
        {
            SharedMemoryInstance mem     = controller.mem.GetInstance("global"); // Change the string to change namespace
            MouseRequest         mouse   = controller.mouse;
            KeyboardRequest      key     = controller.key;
            ToolRequest          tool    = controller.tool;
            List <int>           invoker = this.activation.hotkeys;
            string mouseGesture          = this.activation.mouseGesture;

            //Begin generated code
        }
Beispiel #2
0
        public RepeatClient(int port)
        {
            this.port             = port;
            synchronizationEvents = new Dictionary <int, AutoResetEvent>();
            returnedObjects       = new Dictionary <int, JToken>();

            sendQueue  = new ConcurrentQueue <string>();
            sendSignal = new AutoResetEvent(false);

            messageProcessor = new MessageProcessor(this);

            systemClient = new SystemClientRequest(this);
            systemHost   = new SystemHostRequest(this);

            mem   = new SharedMemoryRequest(this);
            mouse = new MouseRequest(this);
            key   = new KeyboardRequest(this);
            tool  = new ToolRequest(this);
        }