libmp/include/types.h
2024-06-21 01:36:56 +03:00

20 lines
424 B
C

#pragma once
#include "url.h"
#include <stdbool.h>
typedef struct lm_pool {
struct lm_pool *next;
lm_url_t url;
bool available;
char *name;
} lm_pool_t;
typedef struct lm_ctx {
lm_pool_t *pools; // pool list
char *root; // root path for package installtion
char *temp; // temp path
char *data; // package database path
bool debug; // is debug output enabled?
} lm_ctx_t;