changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/gui/client.lisp

changeset 698: 96958d3eb5b0
parent: 2a4f11c0e8c8
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; gui/client.lisp --- GUI Client API
2 
3 ;; This package provides a high-level client protocol for
4 ;; communication with a running GUI.
5 
6 ;; It should be used to provide user-scripting/remote controller APIs
7 ;; similar to Selenium.
8 
9 ;;; Code:
10 (in-package :gui/core)
11 
12 (defgeneric gui-client-p (obj)
13  (:method ((obj t)) nil))
14