gnome-shell/src/shell-global-private.h
Bilal Elmoussaoui 5cbd847c84 Prefer using pragma once
Similar to what we did in mutter

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3507>
2024-10-16 13:17:45 +02:00

24 lines
719 B
C

/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
#pragma once
#include "shell-global.h"
#include <gjs/gjs.h>
#include "shell-app-cache-private.h"
void _shell_global_init (const char *first_property_name,
...);
void _shell_global_set_plugin (ShellGlobal *global,
MetaPlugin *plugin);
void _shell_global_destroy_gjs_context (ShellGlobal *global);
GjsContext *_shell_global_get_gjs_context (ShellGlobal *global);
ShellAppCache * shell_global_get_app_cache (ShellGlobal *global);
void _shell_global_locate_pointer (ShellGlobal *global);
void _shell_global_notify_shutdown (ShellGlobal *global);