mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
Let's not leak details from src/shared and src/libsystemd into src/basic, even though you can't actually do anything useful with just forward declarations from src/shared. The sd-forward.h header is put in src/libsystemd/sd-common as we don't have a directory for shared internal headers for libsystemd yet. Let's also rename forward.h to basic-forward.h to keep things self-explanatory.
43 lines
1.4 KiB
C
43 lines
1.4 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "shared-forward.h"
|
|
|
|
typedef struct X11Context {
|
|
char *layout;
|
|
char *model;
|
|
char *variant;
|
|
char *options;
|
|
} X11Context;
|
|
|
|
typedef struct VCContext {
|
|
char *keymap;
|
|
char *toggle;
|
|
} VCContext;
|
|
|
|
void x11_context_clear(X11Context *xc);
|
|
void x11_context_replace(X11Context *dest, X11Context *src);
|
|
bool x11_context_isempty(const X11Context *xc);
|
|
void x11_context_empty_to_null(X11Context *xc);
|
|
bool x11_context_is_safe(const X11Context *xc);
|
|
bool x11_context_equal(const X11Context *a, const X11Context *b);
|
|
int x11_context_copy(X11Context *dest, const X11Context *src);
|
|
|
|
int find_converted_keymap(const X11Context *xc, char **ret);
|
|
int find_legacy_keymap(const X11Context *xc, char **ret);
|
|
int find_language_fallback(const char *lang, char **ret);
|
|
|
|
void vc_context_clear(VCContext *vc);
|
|
void vc_context_replace(VCContext *dest, VCContext *src);
|
|
bool vc_context_isempty(const VCContext *vc);
|
|
void vc_context_empty_to_null(VCContext *vc);
|
|
bool vc_context_equal(const VCContext *a, const VCContext *b);
|
|
int vc_context_copy(VCContext *dest, const VCContext *src);
|
|
|
|
typedef int (*X11VerifyCallback)(const X11Context *xc);
|
|
|
|
int vconsole_convert_to_x11(const VCContext *vc, X11VerifyCallback verify, X11Context *ret);
|
|
int x11_convert_to_vconsole(const X11Context *xc, VCContext *ret);
|
|
|
|
int vconsole_serialize(const VCContext *vc, const X11Context *xc, char ***ret);
|