blob: 6e1c7c96208b8b9ab64da8bd82268c547b237cbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/**
* Copyright (C) 2020 Jacob Barkdull
*
* I, Jacob Barkdull, hereby release this work into the public domain.
* This applies worldwide. If this is not legally possible, I grant any
* entity the right to use this work for any purpose, without any
* conditions, unless such conditions are required by law.
**/
#ifndef _GSM_SETAFFINITY_H_
#define _GSM_SETAFFINITY_H_
#include <glib.h>
#include "application.h"
void create_set_affinity_dialog (GsmApplication *app);
#endif /* _GSM_SETAFFINITY_H_ */
|