The cl-gog-galaxy Reference Manual

This is the cl-gog-galaxy Reference Manual, version 1.0.0, generated automatically by Declt version 4.0 beta 2 "William Riker" on Sun Dec 15 04:59:48 2024 GMT+0.

Table of Contents


1 Introduction


2 Systems

The main system appears first, followed by any subsystem dependency.


2.1 cl-gog-galaxy

A wrapper for the GOG Galaxy SDK

Maintainer

Yukari Hafner <>

Author

Yukari Hafner <>

Home Page

https://shinmera.github.io/cl-gog-galaxy

Source Control

(GIT https://github.com/Shinmera/cl-gog-galaxy.git)

Bug Tracker

https://github.com/Shinmera/cl-gog-galaxy/issues

License

zlib

Version

1.0.0

Dependencies
  • documentation-utils (system).
  • trivial-features (system).
  • trivial-indent (system).
  • cffi (system).
Source

cl-gog-galaxy.asd.

Child Components

3 Files

Files are sorted by type and then listed depth-first from the systems components trees.


3.1 Lisp


3.1.1 cl-gog-galaxy/cl-gog-galaxy.asd

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

ASDF Systems

cl-gog-galaxy.


3.1.2 cl-gog-galaxy/package.lisp

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Packages

3.1.3 cl-gog-galaxy/low-level.lisp

Dependency

package.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

3.1.4 cl-gog-galaxy/conditions.lisp

Dependency

low-level.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

3.1.5 cl-gog-galaxy/c-object.lisp

Dependency

conditions.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

3.1.6 cl-gog-galaxy/id.lisp

Dependency

c-object.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

*id-object-table* (special variable).


3.1.7 cl-gog-galaxy/listener.lisp

Dependency

id.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

3.1.8 cl-gog-galaxy/wrapper.lisp

Dependency

listener.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

*init* (special variable).


3.1.9 cl-gog-galaxy/apps.lisp

Dependency

wrapper.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

allocate-handle (method).


3.1.10 cl-gog-galaxy/chat.lisp

Dependency

apps.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

allocate-handle (method).


3.1.11 cl-gog-galaxy/cloud-storage.lisp

Dependency

chat.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

3.1.12 cl-gog-galaxy/friends.lisp

Dependency

cloud-storage.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

allocate-handle (method).


3.1.13 cl-gog-galaxy/matchmaking.lisp

Dependency

friends.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

allocate-handle (method).


3.1.14 cl-gog-galaxy/networking.lisp

Dependency

matchmaking.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

3.1.15 cl-gog-galaxy/stats.lisp

Dependency

networking.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

allocate-handle (method).


3.1.16 cl-gog-galaxy/storage.lisp

Dependency

stats.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

allocate-handle (method).


3.1.17 cl-gog-galaxy/telemetry.lisp

Dependency

storage.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

allocate-handle (method).


3.1.18 cl-gog-galaxy/user.lisp

Dependency

telemetry.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

allocate-handle (method).


3.1.19 cl-gog-galaxy/utils.lisp

Dependency

user.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).

Public Interface
Internals

allocate-handle (method).


3.1.20 cl-gog-galaxy/documentation.lisp

Dependency

utils.lisp (file).

Source

cl-gog-galaxy.asd.

Parent Component

cl-gog-galaxy (system).


4 Packages

Packages are listed by definition order.


4.1 org.shirakumo.fraf.gog-galaxy

Source

package.lisp.

Use List

common-lisp.

Public Interface
Internals

4.2 org.shirakumo.fraf.gog-galaxy.cffi

Source

package.lisp.

Use List

common-lisp.

Public Interface
Internals

5 Definitions

Definitions are sorted by export status, category, package, and then by lexicographic order.


5.1 Public Interface


5.1.1 Special variables

Special Variable: *listener-timeout*

Specifies the timeout for synchronous API calls in seconds.

Defaults to 10.

See WITH-LISTENER*

Package

org.shirakumo.fraf.gog-galaxy.

Source

listener.lisp.


5.1.2 Macros

Macro: define-global-listener (name types &body handlers)

Defines a global listener.

TYPES should be an event type, list of event types, or T for all events, that the listener should register itself for.

HANDLERS should be body forms of the following structure:

(HANDLER-NAME ARGS . FORMS)

The HANDLER-NAME should be the name of an event handling function. ARGS should be the argument list for the event handling function excluding the first argument. FORMS should be forms evaluated when the event is handled. During evaluation of FORMS the symbol LISTENER is bound to the listener instance.

See GLOBAL-LISTENER (type)

Package

org.shirakumo.fraf.gog-galaxy.

Source

listener.lisp.

Macro: with-listener ((listener) thunk &body handlers)

Creates a dynamic listener instance.

THUNK is a form to be evaluated for which LISTENER is bound to a DYNAMIC-LISTENER instance with established HANDLERS.

HANDLERS should be body forms of the following structure:

(HANDLER-NAME ARGS . FORMS)

The HANDLER-NAME should be the name of an event handling function. ARGS should be the argument list for the event handling function excluding the first argument. FORMS should be forms evaluated when the event is handled. During evaluation of FORMS the block with the name of LISTENER is established to allow easy returning.

See DYNAMIC-LISTENER (type)
See WITH-LISTENER*

Package

org.shirakumo.fraf.gog-galaxy.

Source

listener.lisp.

Macro: with-listener* ((listener &optional timeout) thunk &body handlers)

Creates a dynamic listener instance and blocks.

After THUNK has been executed, this form blocks by repeatedly calling PROCESS-DATA until TIMEOUT seconds have passed. You should cause an exit from the listener block when the handler is done, or signal an error in case of failure.

This effectively turns an asynchronous API call into a synchronous one.

See *LISTENER-TIMEOUT*
See DYNAMIC-LISTENER (type)
See WITH-LISTENER

Package

org.shirakumo.fraf.gog-galaxy.

Source

listener.lisp.


5.1.3 Ordinary functions

Function: apps ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: chat ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: check-error (&optional value)

Checks whether the underlying GOG Galaxy API encountered an error.

If an error was encountered, signals a GOG-ERROR, otherwise returns VALUE. This will "catch" any error since the last time CHECK-ERROR was called.

See GOG-ERROR (type)

Package

org.shirakumo.fraf.gog-galaxy.

Source

conditions.lisp.

Function: cloud-storage ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: custom-networking ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ensure-lobby (id)

Coerces the ID to a LOBBY instance.

ID may be one of:

INTEGER — A singleton instance corresponding to this ID is returned. If the ID is not a lobby-id, an error is signalled.
USER — Returns the lobby again.

See LOBBY (type)

Package

org.shirakumo.fraf.gog-galaxy.

Source

id.lisp.

Function: ensure-user (id)

Coerces the ID to a USER instance.

ID may be one of:

INTEGER — A singleton instance corresponding to this ID is returned. If the ID is not a user-id, an error is signalled.
USER — Returns the user again.
T — Returns the user corresponding to the one currently logged in to the API.
STRING — Tries to find a user with the given name. See FIND-USER.

See USER (type)
See FIND-USER

Package

org.shirakumo.fraf.gog-galaxy.

Source

id.lisp.

Function: free-allocator (allocator)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: free-listener (listener type)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: friends ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: game-server-listener-registrar ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: get-error ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: gog-error (name &optional message &rest format-args)

Signal a GOG-ERROR.

See GOG-ERROR (type)

Package

org.shirakumo.fraf.gog-galaxy.

Source

conditions.lisp.

Function: iapps-get-current-game-language (apps product-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iapps-get-current-game-language-code (apps product-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iapps-get-current-game-language-code-copy (apps buffer buffer-length product-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iapps-get-current-game-language-copy (apps buffer buffer-length product-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iapps-is-dlc-installed (apps product-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iapps-is-dlc-owned (apps product-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ichat-get-chat-room-member-count (chat chat-room-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ichat-get-chat-room-member-user-idby-index (chat chat-room-id index)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ichat-get-chat-room-message-by-index (chat index message-id message-type sender-id send-time buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ichat-get-chat-room-unread-message-count (chat chat-room-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ichat-mark-chat-room-as-read (chat chat-room-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ichat-request-chat-room-messages (chat chat-room-id limit reference-message-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ichat-request-chat-room-with-user (chat user-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ichat-send-chat-room-message (chat chat-room-id msg listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-calculate-hash (cloudstorage buffer buffer-length hash-buffer hash-buffer-size)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-calculate-hash-callback (cloudstorage user-param read-func rewind-func hash-buffer hash-buffer-size)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-close-savegame (cloudstorage)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-delete-file (cloudstorage container name listener expected-hash)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-get-file (cloudstorage container name data-buffer buffer-length listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-get-file-callback (cloudstorage container name user-param write-func listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-get-file-hash-by-index (cloudstorage index)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-get-file-list (cloudstorage container listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-get-file-metadata (cloudstorage container name listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-get-file-name-by-index (cloudstorage index)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-get-file-size-by-index (cloudstorage index)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-get-file-timestamp-by-index (cloudstorage index)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-open-savegame (cloudstorage)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-put-file (cloudstorage container name buffer buffer-length listener savegame-type time-stamp hash)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icloud-storage-put-file-callback (cloudstorage container name user-param read-func rewind-func listener savegame-type time-stamp hash)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icustom-networking-close-connection (customnetworking connection-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icustom-networking-get-available-data-size (customnetworking connection-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icustom-networking-open-connection (customnetworking connection-string listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icustom-networking-peek-data (customnetworking connection-id dest data-size)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icustom-networking-pop-data (customnetworking connection-id data-size)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icustom-networking-read-data (customnetworking connection-id dest data-size)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: icustom-networking-send-data (customnetworking connection-id data data-size)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: id-from-real-id (type value)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: id-real-id (id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: id-type (id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: id-valid-p (id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ierror-get-msg (error)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ierror-get-name (error)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ierror-get-type (error)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-clear-rich-presence (friend listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-delete-friend (friend user-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-delete-rich-presence (friend key listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-find-user (friend user-specifier listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-default-avatar-criteria (friend)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-friend-avatar-image-id (friend user-id avatar-type)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-friend-avatar-image-rgba (friend user-id avatar-type buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-friend-avatar-url (friend user-id avatar-type)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-friend-avatar-url-copy (friend user-id avatar-type buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-friend-by-index (friend index)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-friend-count (friend)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-friend-invitation-by-index (friend index user-id send-time)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-friend-invitation-count (friend)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-friend-persona-name (friend user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-friend-persona-name-copy (friend user-id buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-friend-persona-state (friend user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-persona-name (friend)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-persona-name-copy (friend buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-persona-state (friend)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-rich-presence (friend key user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-rich-presence-by-index (friend index key key-length value value-length user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-rich-presence-copy (friend key buffer buffer-length user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-rich-presence-count (friend user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-rich-presence-key-by-index (friend index user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-get-rich-presence-key-by-index-copy (friend index buffer buffer-length user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-is-friend (friend user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-is-friend-avatar-image-rgbaavailable (friend user-id avatar-type)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-is-user-in-the-same-game (friend user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-is-user-information-available (friend user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-request-friend-invitation-list (friend listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-request-friend-list (friend listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-request-rich-presence (friend user-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-request-sent-friend-invitation-list (friend listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-request-user-information (friend user-id avatar-criteria listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-respond-to-friend-invitation (friend user-id accept listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-send-friend-invitation (friend user-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-send-invitation (friend user-id connection-string listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-set-default-avatar-criteria (friend default-avatar-criteria)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-set-rich-presence (friend key value listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ifriends-show-overlay-invite-dialog (friend connection-string)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ilistener-registrar-register (registrar type listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: ilistener-registrar-unregister (registrar type listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-add-request-lobby-list-near-value-filter (matchmaking key-to-match value-to-be-close-to)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-add-request-lobby-list-numerical-filter (matchmaking key-to-match value-to-match comparison-type)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-add-request-lobby-list-result-count-filter (matchmaking limit)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-add-request-lobby-list-string-filter (matchmaking key-to-match value-to-match comparison-type)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-create-lobby (matchmaking lobby-type max-members joinable lobby-topology-type created entered)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-delete-lobby-data (matchmaking lobby-id key listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-delete-lobby-member-data (matchmaking lobby-id key listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-lobby-by-index (matchmaking index)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-lobby-data (matchmaking lobby-id key)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-lobby-data-by-index (matchmaking lobby-id index key key-length value value-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-lobby-data-copy (matchmaking lobby-id key buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-lobby-data-count (matchmaking lobby-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-lobby-member-by-index (matchmaking lobby-id index)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-lobby-member-data (matchmaking lobby-id member-id key)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-lobby-member-data-by-index (matchmaking lobby-id member-id index key key-length value value-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-lobby-member-data-copy (matchmaking lobby-id member-id key buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-lobby-member-data-count (matchmaking lobby-id member-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-lobby-message (matchmaking lobby-id message-id sender-id msg msg-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-lobby-owner (matchmaking lobby-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-lobby-type (matchmaking lobby-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-max-num-lobby-members (matchmaking lobby-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-get-num-lobby-members (matchmaking lobby-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-is-lobby-joinable (matchmaking lobby-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-join-lobby (matchmaking lobby-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-leave-lobby (matchmaking lobby-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-request-lobby-data (matchmaking lobby-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-request-lobby-list (matchmaking allow-full-lobbies listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-send-lobby-message (matchmaking lobby-id data data-size)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-set-lobby-data (matchmaking lobby-id key value listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-set-lobby-joinable (matchmaking lobby-id joinable listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-set-lobby-member-data (matchmaking lobby-id key value listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-set-lobby-type (matchmaking lobby-id lobby-type listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: imatchmaking-set-max-num-lobby-members (matchmaking lobby-id max-num-lobby-members listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: inetworking-get-connection-type (networking user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: inetworking-get-nat-type (networking)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: inetworking-get-ping-with (networking galaxy-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: inetworking-is-p2p-packet-available (networking out-msg-size channel)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: inetworking-peek-p2p-packet (networking dest dest-size out-msg-size out-galaxy-id channel)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: inetworking-pop-p2p-packet (networking channel)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: inetworking-read-p2p-packet (networking dest dest-size out-msg-size out-galaxy-id channel)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: inetworking-request-nat-type-detection (networking)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: inetworking-send-p2p-packet (networking galaxy-id data data-size send-type channel)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: init (client-id client-secret &key config-file-path storage-path host port sign-in)

Initializes the API.

This sets up the GOG API and establishes global handlers.
If successful, returns true, otherwise NIL. Unless this function returns success, you may not use any actual API functions.

See SHUTDOWN
See INITIALIZED-P

Package

org.shirakumo.fraf.gog-galaxy.

Source

wrapper.lisp.

Function: init (options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: init-options-allocator (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf init-options-allocator) (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: init-options-client-id (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf init-options-client-id) (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: init-options-client-secret (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf init-options-client-secret) (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: init-options-config-file-path (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf init-options-config-file-path) (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: init-options-host (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf init-options-host) (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: init-options-port (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf init-options-port) (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: init-options-storage-path (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf init-options-storage-path) (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: init-options-thread-factory (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf init-options-thread-factory) (pointer-to-init-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: initialized-p ()

Returns true if the API was initialised successfully and is ready for use.

See INIT
See SHUTDOWN

Package

org.shirakumo.fraf.gog-galaxy.

Source

wrapper.lisp.

Function: istats-clear-achievement (stats name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-find-leaderboard (stats name listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-find-or-create-leaderboard (stats name display-name sort-method display-type listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-achievement (stats name unlocked unlock-time user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-achievement-description (stats name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-achievement-description-copy (stats name buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-achievement-display-name (stats name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-achievement-display-name-copy (stats name buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-leaderboard-display-name (stats name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-leaderboard-display-name-copy (stats name buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-leaderboard-display-type (stats name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-leaderboard-entry-count (stats name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-leaderboard-sort-method (stats name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-requested-leaderboard-entry (stats index rank score user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-requested-leaderboard-entry-with-details (stats index rank score details details-size out-details-size user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-stat-float (stats name user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-stat-int (stats name user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-get-user-time-played (stats user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-is-achievement-visible (stats name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-is-achievement-visible-while-locked (stats name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-request-leaderboard-entries-around-user (stats name count-before count-after user-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-request-leaderboard-entries-for-users (stats name user-array user-array-size listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-request-leaderboard-entries-global (stats name range-start range-end listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-request-leaderboards (stats listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-request-user-stats-and-achievements (stats user-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-request-user-time-played (stats user-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-reset-stats-and-achievements (stats listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-set-achievement (stats name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-set-leaderboard-score (stats name score force-update listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-set-leaderboard-score-with-details (stats name score details details-size force-update listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-set-stat-float (stats name value)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-set-stat-int (stats name value)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-store-stats-and-achievements (stats listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istats-update-avg-rate-stat (stats name count-this-session session-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-download-shared-file (storage shared-file-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-file-delete (storage file-name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-file-exists (storage file-name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-file-read (storage file-name data data-size)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-file-share (storage file-name listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-file-write (storage file-name data data-size)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-get-downloaded-shared-file-by-index (storage index)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-get-downloaded-shared-file-count (storage)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-get-file-count (storage)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-get-file-name-by-index (storage index)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-get-file-name-copy-by-index (storage index buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-get-file-size (storage file-name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-get-file-timestamp (storage file-name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-get-shared-file-name (storage shared-file-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-get-shared-file-name-copy (storage shared-file-id buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-get-shared-file-owner (storage shared-file-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-get-shared-file-size (storage shared-file-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-shared-file-close (storage shared-file-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: istorage-shared-file-read (storage shared-file-id data data-size offset)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: itelemetry-add-array-param (telemetry name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: itelemetry-add-bool-param (telemetry name value)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: itelemetry-add-float-param (telemetry name value)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: itelemetry-add-int-param (telemetry name value)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: itelemetry-add-object-param (telemetry name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: itelemetry-add-string-param (telemetry name value)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: itelemetry-clear-params (telemetry)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: itelemetry-close-param (telemetry)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: itelemetry-get-visit-id (telemetry)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: itelemetry-get-visit-idcopy (telemetry buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: itelemetry-reset-visit-id (telemetry)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: itelemetry-send-anonymous-telemetry-event (telemetry event-type listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: itelemetry-send-telemetry-event (telemetry event-type listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: itelemetry-set-sampling-class (telemetry name)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-create-open-idconnection (user secret-key title-id connection-id ignore-nonce listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-delete-user-data (user key listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-get-access-token (user)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-get-access-token-copy (user buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-get-encrypted-app-ticket (user encrypted-app-ticket max-encrypted-app-ticket-size current-encrypted-app-ticket-size)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-get-galaxy-id (user)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-get-idtoken (user)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-get-idtoken-copy (user buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-get-refresh-token (user)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-get-refresh-token-copy (user buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-get-session-id (user)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-get-user-data (user key user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-get-user-data-by-index (user index key key-length value value-length user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-get-user-data-copy (user key buffer buffer-length user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-get-user-data-count (user user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-is-logged-on (user)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-is-user-data-available (user user-id)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-login-with-open-idconnect (user title-id connection-id id-token create-account encrypted-request player-secret listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-report-invalid-access-token (user access-token info)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-request-encrypted-app-ticket (user data data-size listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-request-user-data (user user-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-set-user-data (user key value listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-sign-in-anonymous (user listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-sign-in-anonymous-telemetry (user listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-sign-in-authorization-code (user authorization-code redirect-uri listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-sign-in-credentials (user login password listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-sign-in-galaxy (user require-online timeout listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-sign-in-launcher (user listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-sign-in-ps4 (user ps4-client-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-sign-in-server-key (user server-key listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-sign-in-steam (user steam-app-ticket steam-app-ticket-size persona-name listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-sign-in-token (user refresh-token listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-sign-in-xb1 (user xbox-one-user-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-sign-in-xblive (user token signature marketplace-id locale listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-sign-in-xbox (user xbox-id listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-sign-out (user)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iuser-signed-in (user)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iutils-disable-overlay-popups (utils popup-group)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iutils-get-gog-services-connection-state (utils)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iutils-get-image-rgba (utils image-id buffer buffer-length)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iutils-get-image-size (utils image-id width height)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iutils-get-notification (utils notification-id consumable type type-length content content-size)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iutils-get-overlay-state (utils)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iutils-is-overlay-visible (utils)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iutils-register-for-notification (utils type)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: iutils-show-overlay-with-web-page (utils url)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-access-token-changed (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-access-token-changed) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-achievement-unlocked (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-achievement-unlocked) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-auth-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-auth-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-auth-lost (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-auth-lost) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-auth-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-auth-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-chat-room-message-send-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-chat-room-message-send-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-chat-room-message-send-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-chat-room-message-send-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-chat-room-messages-received (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-chat-room-messages-received) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-chat-room-messages-retrieve-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-chat-room-messages-retrieve-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-chat-room-messages-retrieve-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-chat-room-messages-retrieve-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-chat-room-with-user-retrieve-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-chat-room-with-user-retrieve-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-chat-room-with-user-retrieve-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-chat-room-with-user-retrieve-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-connection-closed (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-connection-closed) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-connection-data-received (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-connection-data-received) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-connection-open-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-connection-open-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-connection-open-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-connection-open-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-connection-state-change (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-connection-state-change) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-delete-file-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-delete-file-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-delete-file-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-delete-file-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-dlc-check-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-dlc-check-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-dlc-check-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-dlc-check-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-encrypted-app-ticket-retrieve-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-encrypted-app-ticket-retrieve-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-encrypted-app-ticket-retrieve-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-encrypted-app-ticket-retrieve-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-file-share-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-file-share-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-file-share-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-file-share-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-friend-added (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-friend-added) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-friend-delete-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-friend-delete-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-friend-delete-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-friend-delete-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-friend-invitation-list-retrieve-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-friend-invitation-list-retrieve-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-friend-invitation-list-retrieve-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-friend-invitation-list-retrieve-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-friend-invitation-received (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-friend-invitation-received) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-friend-invitation-respond-to-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-friend-invitation-respond-to-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-friend-invitation-respond-to-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-friend-invitation-respond-to-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-friend-invitation-send-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-friend-invitation-send-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-friend-invitation-send-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-friend-invitation-send-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-friend-list-retrieve-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-friend-list-retrieve-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-friend-list-retrieve-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-friend-list-retrieve-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-game-invitation-received (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-game-invitation-received) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-game-join-requested (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-game-join-requested) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-get-file-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-get-file-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-get-file-list-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-get-file-list-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-get-file-list-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-get-file-list-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-get-file-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-get-file-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-invitation-send-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-invitation-send-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-invitation-send-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-invitation-send-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-leaderboard-entries-retrieve-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-leaderboard-entries-retrieve-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-leaderboard-entries-retrieve-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-leaderboard-entries-retrieve-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-leaderboard-retrieve-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-leaderboard-retrieve-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-leaderboard-retrieve-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-leaderboard-retrieve-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-leaderboard-score-update-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-leaderboard-score-update-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-leaderboard-score-update-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-leaderboard-score-update-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-leaderboards-retrieve-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-leaderboards-retrieve-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-leaderboards-retrieve-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-leaderboards-retrieve-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-lobby-created (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-lobby-created) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-lobby-data-retrieve-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-lobby-data-retrieve-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-lobby-data-retrieve-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-lobby-data-retrieve-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-lobby-data-update-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-lobby-data-update-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-lobby-data-update-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-lobby-data-update-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-lobby-data-updated (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-lobby-data-updated) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-lobby-entered (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-lobby-entered) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-lobby-left (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-lobby-left) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-lobby-list (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-lobby-list) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-lobby-member-data-update-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-lobby-member-data-update-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-lobby-member-data-update-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-lobby-member-data-update-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-lobby-member-state-changed (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-lobby-member-state-changed) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-lobby-message-received (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-lobby-message-received) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-lobby-owner-changed (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-lobby-owner-changed) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-nat-type-detection-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-nat-type-detection-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-nat-type-detection-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-nat-type-detection-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-notification-received (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-notification-received) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-operational-state-changed (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-operational-state-changed) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-other-session-started (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-other-session-started) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-overlay-state-changed (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-overlay-state-changed) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-overlay-visibility-changed (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-overlay-visibility-changed) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-p2-ppacket-available (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-p2-ppacket-available) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-persona-data-changed (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-persona-data-changed) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-play-fab-create-open-idconnection-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-play-fab-create-open-idconnection-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-play-fab-create-open-idconnection-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-play-fab-create-open-idconnection-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-play-fab-login-with-open-idconnect-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-play-fab-login-with-open-idconnect-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-play-fab-login-with-open-idconnect-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-play-fab-login-with-open-idconnect-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-put-file-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-put-file-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-put-file-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-put-file-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-rich-presence-change-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-rich-presence-change-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-rich-presence-change-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-rich-presence-change-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-rich-presence-retrieve-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-rich-presence-retrieve-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-rich-presence-retrieve-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-rich-presence-retrieve-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-rich-presence-updated (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-rich-presence-updated) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-sent-friend-invitation-list-retrieve-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-sent-friend-invitation-list-retrieve-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-sent-friend-invitation-list-retrieve-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-sent-friend-invitation-list-retrieve-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-shared-file-download-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-shared-file-download-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-shared-file-download-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-shared-file-download-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-specific-user-data-updated (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-specific-user-data-updated) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-telemetry-event-send-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-telemetry-event-send-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-telemetry-event-send-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-telemetry-event-send-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-user-data-updated (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-user-data-updated) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-user-find-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-user-find-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-user-find-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-user-find-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-user-information-retrieve-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-user-information-retrieve-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-user-information-retrieve-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-user-information-retrieve-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-user-stats-and-achievements-retrieve-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-user-stats-and-achievements-retrieve-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-user-stats-and-achievements-retrieve-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-user-stats-and-achievements-retrieve-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-user-stats-and-achievements-store-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-user-stats-and-achievements-store-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-user-stats-and-achievements-store-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-user-stats-and-achievements-store-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-user-time-played-retrieve-failure (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-user-time-played-retrieve-failure) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-on-user-time-played-retrieve-success (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-on-user-time-played-retrieve-success) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-registrar ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: listener-userptr (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf listener-userptr) (pointer-to-listener)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: logger ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: make-allocator (malloc realloc free)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: make-listener (listener type)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: make-thread-factory (creator)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: matchmaking ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: networking ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: process-data ()

Give the GOG Galaxy API some time to process events.

You should regularly call this function if initialisation was successful. Calling this function will also cause events to be delivered and event handlers to be called synchronously.

See INIT
See LISTENER (type)

Package

org.shirakumo.fraf.gog-galaxy.

Source

wrapper.lisp.

Function: process-data ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: shutdown (&key preserve-static-objects)

Shuts the API down and cleans things up.

This is safe to call multiple times.
After calling shutdown, all API objects are invalidated.

See INIT
See INITIALIZED-P

Package

org.shirakumo.fraf.gog-galaxy.

Source

wrapper.lisp.

Function: shutdown ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: shutdown-ex (options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: shutdown-options-preserve-static-objects (pointer-to-shutdown-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf shutdown-options-preserve-static-objects) (pointer-to-shutdown-options)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: stats ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: storage ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: telemetry ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: thread-detach (pointer-to-thread)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf thread-detach) (pointer-to-thread)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: thread-join (pointer-to-thread)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf thread-join) (pointer-to-thread)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: thread-joinable (pointer-to-thread)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf thread-joinable) (pointer-to-thread)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: thread-user (pointer-to-thread)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: (setf thread-user) (pointer-to-thread)
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: user ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.

Function: utils ()
Package

org.shirakumo.fraf.gog-galaxy.cffi.

Source

low-level.lisp.


5.1.4 Generic functions

Generic Function: accept (request)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: accept ((request friend-request))
Source

friends.lisp.

Generic Function: access-token (interface)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: access-token ((interface users))
Source

user.lisp.

Method: access-token ((interface (eql t)))
Source

user.lisp.

Generic Function: access-token-changed (listener0)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: access-token-changed ((listener0 dynamic-listener))
Source

listener.lisp.

Method: access-token-changed ((listener0 listener))
Source

listener.lisp.

Generic Function: achieved-p (object)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: achieved-p ((name string))
Source

stats.lisp.

Reader Method: achieved-p ((achievement achievement))

automatically generated reader method

Source

stats.lisp.

Target Slot

achieved-p.

Generic Function: (setf achieved-p) (object)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: (setf achieved-p) ((name string))
Source

stats.lisp.

Writer Method: (setf achieved-p) :before ((achievement achievement))
Source

stats.lisp.

Target Slot

achieved-p.

Method: (setf achieved-p) ((achievement achievement))

automatically generated writer method

Source

stats.lisp.

Generic Function: achievement (interface name &optional user)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: achievement ((interface stats) name &optional user)
Source

stats.lisp.

Method: achievement ((interface (eql t)) name &optional user)
Source

stats.lisp.

Generic Function: achievement-unlocked (listener0 name)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: achievement-unlocked ((listener0 dynamic-listener) name)
Source

listener.lisp.

Method: achievement-unlocked ((listener0 listener) name)
Source

listener.lisp.

Generic Function: auth-failure (listener0 reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: auth-failure ((listener0 dynamic-listener) reason)
Source

listener.lisp.

Method: auth-failure ((listener0 listener) reason)
Source

listener.lisp.

Generic Function: auth-lost (listener0)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: auth-lost ((listener0 dynamic-listener))
Source

listener.lisp.

Method: auth-lost ((listener0 listener))
Source

listener.lisp.

Generic Function: auth-success (listener0)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: auth-success ((listener0 dynamic-listener))
Source

listener.lisp.

Method: auth-success ((listener0 listener))
Source

listener.lisp.

Generic Function: available-data (connection)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: available-data ((connection connection))
Source

networking.lisp.

Generic Function: avatar (user &key size buffer)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: avatar ((user user) &key size buffer)
Source

friends.lisp.

Generic Function: avatar-url (user &key size)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: avatar-url ((user user) &key size)
Source

friends.lisp.

Generic Function: befriend (user)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: befriend ((user user))
Source

friends.lisp.

Generic Function: chat-room-message-send-failure (listener0 chat-room-id sent-message-index failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: chat-room-message-send-failure ((listener0 dynamic-listener) chat-room-id sent-message-index failure-reason)
Source

listener.lisp.

Method: chat-room-message-send-failure ((listener0 listener) chat-room-id sent-message-index failure-reason)
Source

listener.lisp.

Generic Function: chat-room-message-send-success (listener0 chat-room-id sent-message-index message-id send-time)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: chat-room-message-send-success ((listener0 dynamic-listener) chat-room-id sent-message-index message-id send-time)
Source

listener.lisp.

Method: chat-room-message-send-success ((listener0 listener) chat-room-id sent-message-index message-id send-time)
Source

listener.lisp.

Generic Function: chat-room-messages-received (listener0 chat-room-id message-count longest-message-lenght)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: chat-room-messages-received ((listener0 dynamic-listener) chat-room-id message-count longest-message-lenght)
Source

listener.lisp.

Method: chat-room-messages-received ((listener0 listener) chat-room-id message-count longest-message-lenght)
Source

listener.lisp.

Generic Function: chat-room-messages-retrieve-failure (listener0 chat-room-id failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: chat-room-messages-retrieve-failure ((listener0 dynamic-listener) chat-room-id failure-reason)
Source

listener.lisp.

Method: chat-room-messages-retrieve-failure ((listener0 listener) chat-room-id failure-reason)
Source

listener.lisp.

Generic Function: chat-room-messages-retrieve-success (listener0 chat-room-id message-count longest-message-lenght)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: chat-room-messages-retrieve-success ((listener0 dynamic-listener) chat-room-id message-count longest-message-lenght)
Source

listener.lisp.

Method: chat-room-messages-retrieve-success ((listener0 listener) chat-room-id message-count longest-message-lenght)
Source

listener.lisp.

Generic Function: chat-room-with-user-retrieve-failure (listener0 user failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: chat-room-with-user-retrieve-failure ((listener0 dynamic-listener) user failure-reason)
Source

listener.lisp.

Method: chat-room-with-user-retrieve-failure ((listener0 listener) user failure-reason)
Source

listener.lisp.

Generic Function: chat-room-with-user-retrieve-success (listener0 user chat-room-id)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: chat-room-with-user-retrieve-success ((listener0 dynamic-listener) user chat-room-id)
Source

listener.lisp.

Method: chat-room-with-user-retrieve-success ((listener0 listener) user chat-room-id)
Source

listener.lisp.

Generic Reader: chatroom (object)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Reader Method: chatroom ((chat-message chat-message))

automatically generated reader method

Source

chat.lisp.

Target Slot

chatroom.

Generic Function: close-savegame (interface)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: close-savegame ((interface cloud-storage))
Source

cloud-storage.lisp.

Method: close-savegame ((interface (eql t)))
Source

cloud-storage.lisp.

Generic Function: connection-closed (listener0 connection-id close-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: connection-closed ((listener0 dynamic-listener) connection-id close-reason)
Source

listener.lisp.

Method: connection-closed ((listener0 listener) connection-id close-reason)
Source

listener.lisp.

Generic Function: connection-data-received (listener0 connection-id data-size)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: connection-data-received ((listener0 dynamic-listener) connection-id data-size)
Source

listener.lisp.

Method: connection-data-received ((listener0 listener) connection-id data-size)
Source

listener.lisp.

Generic Function: connection-open-failure (listener0 connection-string failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: connection-open-failure ((listener0 dynamic-listener) connection-string failure-reason)
Source

listener.lisp.

Method: connection-open-failure ((listener0 listener) connection-string failure-reason)
Source

listener.lisp.

Generic Function: connection-open-success (listener0 connection-string connection-id)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: connection-open-success ((listener0 dynamic-listener) connection-string connection-id)
Source

listener.lisp.

Method: connection-open-success ((listener0 listener) connection-string connection-id)
Source

listener.lisp.

Generic Function: connection-state (interface)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: connection-state ((interface utils))
Source

utils.lisp.

Method: connection-state ((interface (eql t)))
Source

utils.lisp.

Generic Function: connection-state-change (listener0 connection-state)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: connection-state-change ((listener0 dynamic-listener) connection-state)
Source

listener.lisp.

Method: connection-state-change ((listener0 listener) connection-state)
Source

listener.lisp.

Generic Function: connection-type (interface user)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: connection-type ((interface networking) user)
Source

networking.lisp.

Method: connection-type ((interface (eql t)) user)
Source

networking.lisp.

Generic Function: create-lobby (interface &key type max-members joinable topology-type enter-listener)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: create-lobby ((interface matchmaking) &key type max-members joinable topology-type enter-listener)
Source

matchmaking.lisp.

Method: create-lobby ((interface (eql t)) &key type max-members joinable topology-type enter-listener)
Source

matchmaking.lisp.

Generic Function: current-game-language (interface &optional product-id)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: current-game-language ((interface apps) &optional product-id)
Source

apps.lisp.

Method: current-game-language ((interface (eql t)) &optional product-id)
Source

apps.lisp.

Generic Function: current-game-language-code (interface &optional product-id)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: current-game-language-code ((interface apps) &optional product-id)
Source

apps.lisp.

Method: current-game-language-code ((interface (eql t)) &optional product-id)
Source

apps.lisp.

Generic Function: data (lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: data ((lobby lobby))
Source

matchmaking.lisp.

Generic Function: (setf data) (lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: (setf data) ((lobby lobby))
Source

matchmaking.lisp.

Generic Function: data-field (key lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: data-field (key (lobby lobby))
Source

matchmaking.lisp.

Generic Function: (setf data-field) (key lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: (setf data-field) (key (lobby lobby))
Source

matchmaking.lisp.

Generic Function: default-avatar-sizes (interface)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: default-avatar-sizes ((interface friends))
Source

friends.lisp.

Method: default-avatar-sizes ((interface (eql t)))
Source

friends.lisp.

Generic Function: (setf default-avatar-sizes) (interface)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: (setf default-avatar-sizes) ((interface friends))
Source

friends.lisp.

Method: (setf default-avatar-sizes) ((interface (eql t)))
Source

friends.lisp.

Generic Function: delete-file-failure (listener0 container name failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: delete-file-failure ((listener0 dynamic-listener) container name failure-reason)
Source

listener.lisp.

Method: delete-file-failure ((listener0 listener) container name failure-reason)
Source

listener.lisp.

Generic Function: delete-file-success (listener0 container name)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: delete-file-success ((listener0 dynamic-listener) container name)
Source

listener.lisp.

Method: delete-file-success ((listener0 listener) container name)
Source

listener.lisp.

Generic Function: description (achievement)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: description ((achievement achievement))
Source

stats.lisp.

Generic Reader: details (object)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Reader Method: details ((leaderboard-entry leaderboard-entry))

automatically generated reader method

Source

stats.lisp.

Target Slot

details.

Generic Function: display-name (achievement)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: display-name ((leaderboard leaderboard))
Source

stats.lisp.

Method: display-name ((achievement achievement))
Source

stats.lisp.

Generic Function: display-type (leaderboard)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: display-type ((leaderboard leaderboard))
Source

stats.lisp.

Generic Function: dlc-check-failure (listener0 product-id failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: dlc-check-failure ((listener0 dynamic-listener) product-id failure-reason)
Source

listener.lisp.

Method: dlc-check-failure ((listener0 listener) product-id failure-reason)
Source

listener.lisp.

Generic Function: dlc-check-success (listener0 product-id is-owned)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: dlc-check-success ((listener0 dynamic-listener) product-id is-owned)
Source

listener.lisp.

Method: dlc-check-success ((listener0 listener) product-id is-owned)
Source

listener.lisp.

Generic Function: dlc-installed-p (interface product-id)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: dlc-installed-p ((interface apps) product-id)
Source

apps.lisp.

Method: dlc-installed-p ((interface (eql t)) product-id)
Source

apps.lisp.

Generic Function: dlc-owned-p (interface product-id)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: dlc-owned-p ((interface apps) product-id)
Source

apps.lisp.

Method: dlc-owned-p ((interface (eql t)) product-id)
Source

apps.lisp.

Generic Function: encrypted-app-ticket-retrieve-failure (listener0 failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: encrypted-app-ticket-retrieve-failure ((listener0 dynamic-listener) failure-reason)
Source

listener.lisp.

Method: encrypted-app-ticket-retrieve-failure ((listener0 listener) failure-reason)
Source

listener.lisp.

Generic Function: encrypted-app-ticket-retrieve-success (listener0)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: encrypted-app-ticket-retrieve-success ((listener0 dynamic-listener))
Source

listener.lisp.

Method: encrypted-app-ticket-retrieve-success ((listener0 listener))
Source

listener.lisp.

Generic Function: file-exists-p (interface name)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: file-exists-p ((interface storage) name)
Source

storage.lisp.

Method: file-exists-p ((interface (eql t)) name)
Source

storage.lisp.

Generic Function: file-name (file)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: file-name ((file shared-file))
Source

storage.lisp.

Generic Function: file-share-failure (listener0 file-name failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: file-share-failure ((listener0 dynamic-listener) file-name failure-reason)
Source

listener.lisp.

Method: file-share-failure ((listener0 listener) file-name failure-reason)
Source

listener.lisp.

Generic Function: file-share-success (listener0 file-name shared-file-id)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: file-share-success ((listener0 dynamic-listener) file-name shared-file-id)
Source

listener.lisp.

Method: file-share-success ((listener0 listener) file-name shared-file-id)
Source

listener.lisp.

Generic Function: file-size (file)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: file-size ((file shared-file))
Source

storage.lisp.

Generic Function: find-leaderboard (interface name &key display-name sort-method display-type if-does-not-exist)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: find-leaderboard ((interface stats) name &key display-name sort-method display-type if-does-not-exist)
Source

stats.lisp.

Method: find-leaderboard ((interface (eql t)) name &key display-name sort-method display-type if-does-not-exist)
Source

stats.lisp.

Generic Function: find-user (interface name)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: find-user ((interface friends) name)
Source

friends.lisp.

Method: find-user ((interface (eql t)) name)
Source

friends.lisp.

Generic Function: free (object)

Frees the underlying handle of the object.

See HANDLE
See C-OBJECT (type)

Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: free ((object c-registered-object))
Source

c-object.lisp.

Method: free ((object c-object))
Source

c-object.lisp.

Generic Function: friend-added (listener0 user invitation-direction)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: friend-added ((listener0 dynamic-listener) user invitation-direction)
Source

listener.lisp.

Method: friend-added ((listener0 listener) user invitation-direction)
Source

listener.lisp.

Generic Function: friend-delete-failure (listener0 user failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: friend-delete-failure ((listener0 dynamic-listener) user failure-reason)
Source

listener.lisp.

Method: friend-delete-failure ((listener0 listener) user failure-reason)
Source

listener.lisp.

Generic Function: friend-delete-success (listener0 user)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: friend-delete-success ((listener0 dynamic-listener) user)
Source

listener.lisp.

Method: friend-delete-success ((listener0 listener) user)
Source

listener.lisp.

Generic Function: friend-invitation-list-retrieve-failure (listener0 failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: friend-invitation-list-retrieve-failure ((listener0 dynamic-listener) failure-reason)
Source

listener.lisp.

Method: friend-invitation-list-retrieve-failure ((listener0 listener) failure-reason)
Source

listener.lisp.

Generic Function: friend-invitation-list-retrieve-success (listener0)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: friend-invitation-list-retrieve-success ((listener0 dynamic-listener))
Source

listener.lisp.

Method: friend-invitation-list-retrieve-success ((listener0 listener))
Source

listener.lisp.

Generic Function: friend-invitation-received (listener0 user send-time)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: friend-invitation-received ((listener0 dynamic-listener) user send-time)
Source

listener.lisp.

Method: friend-invitation-received ((listener0 listener) user send-time)
Source

listener.lisp.

Generic Function: friend-invitation-respond-to-failure (listener0 user failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: friend-invitation-respond-to-failure ((listener0 dynamic-listener) user failure-reason)
Source

listener.lisp.

Method: friend-invitation-respond-to-failure ((listener0 listener) user failure-reason)
Source

listener.lisp.

Generic Function: friend-invitation-respond-to-success (listener0 user accept)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: friend-invitation-respond-to-success ((listener0 dynamic-listener) user accept)
Source

listener.lisp.

Method: friend-invitation-respond-to-success ((listener0 listener) user accept)
Source

listener.lisp.

Generic Function: friend-invitation-send-failure (listener0 user failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: friend-invitation-send-failure ((listener0 dynamic-listener) user failure-reason)
Source

listener.lisp.

Method: friend-invitation-send-failure ((listener0 listener) user failure-reason)
Source

listener.lisp.

Generic Function: friend-invitation-send-success (listener0 user)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: friend-invitation-send-success ((listener0 dynamic-listener) user)
Source

listener.lisp.

Method: friend-invitation-send-success ((listener0 listener) user)
Source

listener.lisp.

Generic Function: friend-list-retrieve-failure (listener0 failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: friend-list-retrieve-failure ((listener0 dynamic-listener) failure-reason)
Source

listener.lisp.

Method: friend-list-retrieve-failure ((listener0 listener) failure-reason)
Source

listener.lisp.

Generic Function: friend-list-retrieve-success (listener0)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: friend-list-retrieve-success ((listener0 dynamic-listener))
Source

listener.lisp.

Method: friend-list-retrieve-success ((listener0 listener))
Source

listener.lisp.

Generic Function: friend-p (user)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: friend-p ((user user))
Source

friends.lisp.

Generic Function: game-invitation-received (listener0 user connection-string)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: game-invitation-received ((listener0 dynamic-listener) user connection-string)
Source

listener.lisp.

Method: game-invitation-received ((listener0 listener) user connection-string)
Source

listener.lisp.

Generic Function: game-join-requested (listener0 user connection-string)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: game-join-requested ((listener0 dynamic-listener) user connection-string)
Source

listener.lisp.

Method: game-join-requested ((listener0 listener) user connection-string)
Source

listener.lisp.

Generic Function: get-chatroom (interface user)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: get-chatroom ((interface chat) user)
Source

chat.lisp.

Method: get-chatroom ((interface (eql t)) user)
Source

chat.lisp.

Generic Function: get-file (interface path &key name container)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: get-file ((interface storage) (path pathname) &key name)
Source

storage.lisp.

Method: get-file ((interface (eql t)) (path pathname) &key name)
Source

storage.lisp.

Method: get-file ((file shared-file) (path pathname) &key)
Source

storage.lisp.

Method: get-file ((interface cloud-storage) path &key name container)
Source

cloud-storage.lisp.

Method: get-file ((interface (eql t)) path &key name container)
Source

cloud-storage.lisp.

Generic Function: get-file-failure (listener0 container name failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: get-file-failure ((listener0 dynamic-listener) container name failure-reason)
Source

listener.lisp.

Method: get-file-failure ((listener0 listener) container name failure-reason)
Source

listener.lisp.

Generic Function: get-file-list-failure (listener0 failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: get-file-list-failure ((listener0 dynamic-listener) failure-reason)
Source

listener.lisp.

Method: get-file-list-failure ((listener0 listener) failure-reason)
Source

listener.lisp.

Generic Function: get-file-list-success (listener0 file-count quota quota-used)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: get-file-list-success ((listener0 dynamic-listener) file-count quota quota-used)
Source

listener.lisp.

Method: get-file-list-success ((listener0 listener) file-count quota quota-used)
Source

listener.lisp.

Generic Function: get-file-success (listener0 container name file-size savegame-type savegame-id)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: get-file-success ((listener0 dynamic-listener) container name file-size savegame-type savegame-id)
Source

listener.lisp.

Method: get-file-success ((listener0 listener) container name file-size savegame-type savegame-id)
Source

listener.lisp.

Generic Function: get-message (i chatroom)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: get-message (i (lobby lobby))
Source

matchmaking.lisp.

Method: get-message (i (chatroom chatroom))
Source

chat.lisp.

Generic Function: handle (object)

Returns the handle (pointer) of the object.

If the object is no longer valid returns NIL.

See C-OBJECT (type)

Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: handle ((name symbol))
Source

c-object.lisp.

Method: handle (thing)
Source

c-object.lisp.

Reader Method: handle ((c-object c-object))

automatically generated reader method

Source

c-object.lisp.

Target Slot

handle.

Generic Writer: (setf handle) (object)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Writer Method: (setf handle) ((c-object c-object))

automatically generated writer method

Source

c-object.lisp.

Target Slot

handle.

Generic Reader: id (object)

Returns the ID of the object.

See ID-REGISTERED-OBJECT (type)

Package

org.shirakumo.fraf.gog-galaxy.

Methods
Reader Method: id ((shared-file shared-file))

automatically generated reader method

Source

storage.lisp.

Target Slot

id.

Reader Method: id ((connection connection))

automatically generated reader method

Source

networking.lisp.

Target Slot

id.

Reader Method: id ((friend-request friend-request))

automatically generated reader method

Source

friends.lisp.

Target Slot

id.

Reader Method: id ((chatroom chatroom))

automatically generated reader method

Source

chat.lisp.

Target Slot

id.

Reader Method: id ((chat-message chat-message))

automatically generated reader method

Source

chat.lisp.

Target Slot

id.

Reader Method: id ((id-registered-object id-registered-object))

automatically generated reader method

Source

id.lisp.

Target Slot

id.

Generic Function: id-token (interface)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: id-token ((interface users))
Source

user.lisp.

Method: id-token ((interface (eql t)))
Source

user.lisp.

Generic Function: in-same-game-p (user)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: in-same-game-p ((user user))
Source

friends.lisp.

Generic Function: interface (name)

Returns the singleton interface object of the given name.

See INTERFACE (type)

Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: interface ((name symbol))
Source

c-object.lisp.

Generic Function: invitation-send-failure (listener0 user connection-string failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: invitation-send-failure ((listener0 dynamic-listener) user connection-string failure-reason)
Source

listener.lisp.

Method: invitation-send-failure ((listener0 listener) user connection-string failure-reason)
Source

listener.lisp.

Generic Function: invitation-send-success (listener0 user connection-string)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: invitation-send-success ((listener0 dynamic-listener) user connection-string)
Source

listener.lisp.

Method: invitation-send-success ((listener0 listener) user connection-string)
Source

listener.lisp.

Generic Function: invite (user connection-string)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: invite ((user user) connection-string)
Source

friends.lisp.

Generic Function: join (lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: join ((lobby lobby))
Source

matchmaking.lisp.

Generic Function: joinable-p (lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: joinable-p ((lobby lobby))
Source

matchmaking.lisp.

Generic Function: (setf joinable-p) (lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: (setf joinable-p) ((lobby lobby))
Source

matchmaking.lisp.

Generic Function: kind (condition)

Returns the error type (if any).

See GOG-ERROR (type)

Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: kind ((lobby lobby))
Source

matchmaking.lisp.

Reader Method: kind ((chat-message chat-message))

automatically generated reader method

Source

chat.lisp.

Target Slot

type.

Reader Method: kind ((condition gog-error))
Source

conditions.lisp.

Target Slot

type.

Generic Function: (setf kind) (lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: (setf kind) ((lobby lobby))
Source

matchmaking.lisp.

Generic Reader: leaderboard (object)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Reader Method: leaderboard ((leaderboard-entry leaderboard-entry))

automatically generated reader method

Source

stats.lisp.

Target Slot

leaderboard.

Generic Function: leaderboard-entries-retrieve-failure (listener0 name failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: leaderboard-entries-retrieve-failure ((listener0 dynamic-listener) name failure-reason)
Source

listener.lisp.

Method: leaderboard-entries-retrieve-failure ((listener0 listener) name failure-reason)
Source

listener.lisp.

Generic Function: leaderboard-entries-retrieve-success (listener0 name entry-count)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: leaderboard-entries-retrieve-success ((listener0 dynamic-listener) name entry-count)
Source

listener.lisp.

Method: leaderboard-entries-retrieve-success ((listener0 listener) name entry-count)
Source

listener.lisp.

Generic Function: leaderboard-retrieve-failure (listener0 name failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: leaderboard-retrieve-failure ((listener0 dynamic-listener) name failure-reason)
Source

listener.lisp.

Method: leaderboard-retrieve-failure ((listener0 listener) name failure-reason)
Source

listener.lisp.

Generic Function: leaderboard-retrieve-success (listener0 name)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: leaderboard-retrieve-success ((listener0 dynamic-listener) name)
Source

listener.lisp.

Method: leaderboard-retrieve-success ((listener0 listener) name)
Source

listener.lisp.

Generic Function: leaderboard-score-update-failure (listener0 name score failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: leaderboard-score-update-failure ((listener0 dynamic-listener) name score failure-reason)
Source

listener.lisp.

Method: leaderboard-score-update-failure ((listener0 listener) name score failure-reason)
Source

listener.lisp.

Generic Function: leaderboard-score-update-success (listener0 name score old-rank new-rank)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: leaderboard-score-update-success ((listener0 dynamic-listener) name score old-rank new-rank)
Source

listener.lisp.

Method: leaderboard-score-update-success ((listener0 listener) name score old-rank new-rank)
Source

listener.lisp.

Generic Function: leaderboards-retrieve-failure (listener0 failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: leaderboards-retrieve-failure ((listener0 dynamic-listener) failure-reason)
Source

listener.lisp.

Method: leaderboards-retrieve-failure ((listener0 listener) failure-reason)
Source

listener.lisp.

Generic Function: leaderboards-retrieve-success (listener0)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: leaderboards-retrieve-success ((listener0 dynamic-listener))
Source

listener.lisp.

Method: leaderboards-retrieve-success ((listener0 listener))
Source

listener.lisp.

Generic Function: leave (lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: leave ((lobby lobby))
Source

matchmaking.lisp.

Generic Function: list-entries (leaderboard &key around users start end)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: list-entries ((leaderboard leaderboard) &key around users start end)
Source

stats.lisp.

Generic Function: list-files (interface &key container)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: list-files ((interface storage) &key)
Source

storage.lisp.

Method: list-files ((interface (eql t)) &key)
Source

storage.lisp.

Method: list-files ((interface cloud-storage) &key container)
Source

cloud-storage.lisp.

Generic Function: list-friend-requests (interface)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: list-friend-requests ((interface friends))
Source

friends.lisp.

Method: list-friend-requests ((interface (eql t)))
Source

friends.lisp.

Generic Function: list-friends (interface)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: list-friends ((interface friends))
Source

friends.lisp.

Method: list-friends ((interface (eql t)))
Source

friends.lisp.

Generic Function: list-lobbies (interface &key allow-full limit filters)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: list-lobbies ((interface matchmaking) &key allow-full limit filters)
Source

matchmaking.lisp.

Method: list-lobbies ((interface (eql t)) &key allow-full limit filters)
Source

matchmaking.lisp.

Generic Function: list-members (lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: list-members ((lobby lobby))
Source

matchmaking.lisp.

Generic Function: list-shared-files (interface)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: list-shared-files ((interface storage))
Source

storage.lisp.

Method: list-shared-files ((interface (eql t)))
Source

storage.lisp.

Generic Function: lobby-created (listener0 lobby result)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: lobby-created ((listener0 dynamic-listener) lobby result)
Source

listener.lisp.

Method: lobby-created ((listener0 listener) lobby result)
Source

listener.lisp.

Generic Function: lobby-data-retrieve-failure (listener0 lobby failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: lobby-data-retrieve-failure ((listener0 dynamic-listener) lobby failure-reason)
Source

listener.lisp.

Method: lobby-data-retrieve-failure ((listener0 listener) lobby failure-reason)
Source

listener.lisp.

Generic Function: lobby-data-retrieve-success (listener0 lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: lobby-data-retrieve-success ((listener0 dynamic-listener) lobby)
Source

listener.lisp.

Method: lobby-data-retrieve-success ((listener0 listener) lobby)
Source

listener.lisp.

Generic Function: lobby-data-update-failure (listener0 lobby failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: lobby-data-update-failure ((listener0 dynamic-listener) lobby failure-reason)
Source

listener.lisp.

Method: lobby-data-update-failure ((listener0 listener) lobby failure-reason)
Source

listener.lisp.

Generic Function: lobby-data-update-success (listener0 lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: lobby-data-update-success ((listener0 dynamic-listener) lobby)
Source

listener.lisp.

Method: lobby-data-update-success ((listener0 listener) lobby)
Source

listener.lisp.

Generic Function: lobby-data-updated (listener0 lobby member)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: lobby-data-updated ((listener0 dynamic-listener) lobby member)
Source

listener.lisp.

Method: lobby-data-updated ((listener0 listener) lobby member)
Source

listener.lisp.

Generic Function: lobby-entered (listener0 lobby result)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: lobby-entered ((listener0 dynamic-listener) lobby result)
Source

listener.lisp.

Method: lobby-entered ((listener0 listener) lobby result)
Source

listener.lisp.

Generic Function: lobby-left (listener0 lobby leave-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: lobby-left ((listener0 dynamic-listener) lobby leave-reason)
Source

listener.lisp.

Method: lobby-left ((listener0 listener) lobby leave-reason)
Source

listener.lisp.

Generic Function: lobby-list (listener0 lobby-count result)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: lobby-list ((listener0 dynamic-listener) lobby-count result)
Source

listener.lisp.

Method: lobby-list ((listener0 listener) lobby-count result)
Source

listener.lisp.

Generic Function: lobby-member-data-update-failure (listener0 lobby member failure-reason)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: lobby-member-data-update-failure ((listener0 dynamic-listener) lobby member failure-reason)
Source

listener.lisp.

Method: lobby-member-data-update-failure ((listener0 listener) lobby member failure-reason)
Source

listener.lisp.

Generic Function: lobby-member-data-update-success (listener0 lobby member)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: lobby-member-data-update-success ((listener0 dynamic-listener) lobby member)
Source

listener.lisp.

Method: lobby-member-data-update-success ((listener0 listener) lobby member)
Source

listener.lisp.

Generic Function: lobby-member-state-changed (listener0 lobby member member-state-change)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: lobby-member-state-changed ((listener0 dynamic-listener) lobby member member-state-change)
Source

listener.lisp.

Method: lobby-member-state-changed ((listener0 listener) lobby member member-state-change)
Source

listener.lisp.

Generic Function: lobby-message-received (listener0 lobby sender-id message-id message-length)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: lobby-message-received ((listener0 dynamic-listener) lobby sender-id message-id message-length)
Source

listener.lisp.

Method: lobby-message-received ((listener0 listener) lobby sender-id message-id message-length)
Source

listener.lisp.

Generic Function: lobby-owner-changed (listener0 lobby new-owner-id)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: lobby-owner-changed ((listener0 dynamic-listener) lobby new-owner-id)
Source

listener.lisp.

Method: lobby-owner-changed ((listener0 listener) lobby new-owner-id)
Source

listener.lisp.

Generic Function: logged-on-p (interface)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: logged-on-p ((interface users))
Source

user.lisp.

Method: logged-on-p ((interface (eql t)))
Source

user.lisp.

Generic Function: mark-read (chatroom)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: mark-read ((chatroom chatroom))
Source

chat.lisp.

Generic Function: max-members (lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: max-members ((lobby lobby))
Source

matchmaking.lisp.

Generic Function: (setf max-members) (lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: (setf max-members) ((lobby lobby))
Source

matchmaking.lisp.

Generic Function: member-count (lobby)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: member-count ((lobby lobby))
Source

matchmaking.lisp.

Generic Function: member-data (lobby member)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: member-data ((lobby lobby) (member user))
Source

matchmaking.lisp.

Generic Function: (setf member-data) (lobby member)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: (setf member-data) ((lobby lobby) (member user))
Source

matchmaking.lisp.

Generic Function: member-data-field (key lobby member)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: member-data-field (key (lobby lobby) (member user))
Source

matchmaking.lisp.

Generic Function: (setf member-data-field) (key lobby member)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: (setf member-data-field) (key (lobby lobby) (member user))
Source

matchmaking.lisp.

Generic Function: members (chatroom)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: members ((chatroom chatroom))
Source

chat.lisp.

Generic Reader: message (condition)

Returns the error message (if any).

See GOG-ERROR (type)

Package

org.shirakumo.fraf.gog-galaxy.

Methods
Reader Method: message ((condition gog-error))
Source

conditions.lisp.

Target Slot

message.

Generic Function: messages (chatroom &key limit reference)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: messages ((chatroom chatroom) &key limit reference)
Source

chat.lisp.

Generic Reader: name (condition)

Returns the name of the error type (if any).

See GOG-ERROR (type)

Package

org.shirakumo.fraf.gog-galaxy.

Methods
Reader Method: name ((leaderboard leaderboard))

automatically generated reader method

Source

stats.lisp.

Target Slot

name.

Reader Method: name ((achievement achievement))

automatically generated reader method

Source

stats.lisp.

Target Slot

name.

Reader Method: name ((condition gog-error))
Source

conditions.lisp.

Target Slot

name.

Generic Function: nat-type (interface)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: nat-type ((interface networking))
Source

networking.lisp.

Method: nat-type ((interface (eql t)))
Source

networking.lisp.

Generic Function: nat-type-detection-failure (listener0)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: nat-type-detection-failure ((listener0 dynamic-listener))
Source

listener.lisp.

Method: nat-type-detection-failure ((listener0 listener))
Source

listener.lisp.

Generic Function: nat-type-detection-success (listener0 nat-type)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: nat-type-detection-success ((listener0 dynamic-listener) nat-type)
Source

listener.lisp.

Method: nat-type-detection-success ((listener0 listener) nat-type)
Source

listener.lisp.

Generic Function: notification-received (listener0 notification-id type-length content-size)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: notification-received ((listener0 dynamic-listener) notification-id type-length content-size)
Source

listener.lisp.

Method: notification-received ((listener0 listener) notification-id type-length content-size)
Source

listener.lisp.

Generic Function: open-connection (interface string)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: open-connection ((interface custom-networking) string)
Source

networking.lisp.

Method: open-connection ((interface (eql t)) string)
Source

networking.lisp.

Generic Function: open-savegame (interface)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: open-savegame ((interface cloud-storage))
Source

cloud-storage.lisp.

Method: open-savegame ((interface (eql t)))
Source

cloud-storage.lisp.

Generic Function: operational-state-changed (listener0 state)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: operational-state-changed ((listener0 dynamic-listener) state)
Source

listener.lisp.

Method: operational-state-changed ((listener0 listener) state)
Source

listener.lisp.

Generic Function: other-session-started (listener0)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: other-session-started ((listener0 dynamic-listener))
Source

listener.lisp.

Method: other-session-started ((listener0 listener))
Source

listener.lisp.

Generic Function: overlay-state (interface)
Package

org.shirakumo.fraf.gog-galaxy.

Methods
Method: overlay-state ((interface utils))