diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-02-27 09:51:29 +0100 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-02-27 09:51:29 +0100 |
| commit | 2c65a2c6b02924df720f55c6e96e2e201d404c0c (patch) | |
| tree | d5103d1d2fa92099a71553d4523138617c1e0bbd /backend/job.h | |
| parent | 5875f6ac9ad2191eb761157fb94cb73bc671a9f0 (diff) | |
| download | katja-2c65a2c6b02924df720f55c6e96e2e201d404c0c.tar.gz | |
Rename Glib primitive types to standard C types
Diffstat (limited to 'backend/job.h')
| -rw-r--r-- | backend/job.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/backend/job.h b/backend/job.h index a1684c6..f99baee 100644 --- a/backend/job.h +++ b/backend/job.h @@ -1,5 +1,9 @@ -#ifndef __SLACK_JOB_H -#define __SLACK_JOB_H +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ +#pragma once #include <pk-backend.h> #include <sqlite3.h> @@ -12,8 +16,6 @@ bool filter_package (PkBitfield filters, bool is_installed); extern "C" { -void pk_backend_search_thread (PkBackendJob *job, GVariant *params, gpointer user_data); +void pk_backend_search_thread (PkBackendJob *job, GVariant *params, void *user_data); } - -#endif /* __SLACK_JOB_H */ |
