Welcome to mirror list, hosted at ThFree Co, Russian Federation.

wayland_dynload_cursor.c « intern « wayland_dynload « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d0526c7ba6a8656931087e4971c437cf4c30ce2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup intern_wayland_dynload
 *
 * Wrapper functions for `<wayland-cursor.h>`.
 */

#include <stdlib.h> /* `atexit`. */
#include <string.h>

#include "wayland_dynload_API.h"
#include "wayland_dynload_utils.h"

#include "wayland_dynload_cursor.h" /* Own include. */

struct WaylandDynload_Cursor wayland_dynload_cursor = {NULL};

static DynamicLibrary lib = NULL;

bool wayland_dynload_cursor_init(const bool verbose)
{
  /* Library paths. */
  const char *paths[] = {
      "libwayland-cursor.so.0",
      "libwayland-cursor.so",
  };
  const int paths_num = sizeof(paths) / sizeof(*paths);
  int path_index;
  if (!(lib = dynamic_library_open_array_with_error(paths, paths_num, verbose, &path_index))) {
    return false;
  }
  if (atexit(wayland_dynload_cursor_exit)) {
    return false;
  }

#define WAYLAND_DYNLOAD_FN(symbol) \
  if (!(wayland_dynload_cursor.symbol = dynamic_library_find_with_error( \
            lib, #symbol, paths[path_index]))) { \
    return false; \
  }
#include "wayland_dynload_cursor.h"
#undef WAYLAND_DYNLOAD_FN

  return true;
}

void wayland_dynload_cursor_exit(void)
{
  if (lib != NULL) {
    dynamic_library_close(lib); /*  Ignore errors. */
    lib = NULL;
  }
}

/* Validate local signatures against the original header. */
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wredundant-decls"
#define WAYLAND_DYNLOAD_VALIDATE
#include "wayland_dynload_cursor.h"
#pragma GCC diagnostic pop