You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once
|
|
|
|
#include "module.h"
|
|
|
|
#define MODULE_DATABASE_CAPACITY 128
|
|
|
|
int module_database_add(struct module *module);
|
|
struct module *module_database_find_by_name(char *name);
|
|
struct module *module_database_find_by_socket_descriptor(int socket_descriptor);
|