Add currently existing PackageKit backend
Some checks failed
Test / build (push) Failing after 27s

This commit is contained in:
2026-02-03 14:50:26 +01:00
parent da02080fc1
commit 97efcb4faa
19 changed files with 2846 additions and 0 deletions

19
backend/job.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef __SLACK_JOB_H
#define __SLACK_JOB_H
#include <pk-backend.h>
#include <sqlite3.h>
namespace slack {
bool filter_package (PkBitfield filters, bool is_installed);
}
extern "C" {
void pk_backend_search_thread (PkBackendJob *job, GVariant *params, gpointer user_data);
}
#endif /* __SLACK_JOB_H */