libmp/include/types.h

39 lines
789 B
C
Raw Normal View History

2024-06-20 00:34:32 +00:00
#pragma once
#include "url.h"
#include <stdbool.h>
#include <stddef.h>
typedef struct lm_pkg {
struct lm_pkg *next;
char *name;
char *desc;
char **depends;
char *version;
size_t size;
} lm_pkg_t;
typedef struct lm_pool_info {
char *maintainer;
char *pubkey;
size_t size;
2024-06-25 18:21:15 +00:00
char *file;
} lm_pool_info_t;
2024-06-20 00:34:32 +00:00
typedef struct lm_pool {
struct lm_pool *next;
lm_pool_info_t info;
2024-06-20 22:36:56 +00:00
lm_url_t url;
lm_pkg_t *pkg;
2024-06-20 22:36:56 +00:00
bool available;
char *name;
2024-06-20 00:34:32 +00:00
} lm_pool_t;
typedef struct lm_ctx {
lm_pool_t *pools; // pool list
2024-06-20 22:36:56 +00:00
char *root; // root path for package installtion
char *temp; // temp path
char *data; // package database path
bool debug; // is debug output enabled?
2024-06-20 00:34:32 +00:00
} lm_ctx_t;