/* * regconn.c * Copyright (C) 2024 David García Goñi * * This file is part of Elektroid. * * Elektroid is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Elektroid is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Elektroid. If not, see . */ #include "regconn.h" #include "connectors/cz.h" #include "connectors/default.h" #include "connectors/efactor.h" #include "connectors/elektron.h" #include "connectors/logue.h" #include "connectors/microbrute.h" #include "connectors/microfreak.h" #include "connectors/padkontrol.h" #include "connectors/phatty.h" #include "connectors/sds.h" #include "connectors/summit.h" #include "connectors/system.h" #include "connectors/volca_sample.h" #include "connectors/volca_sample_2.h" void regconn_register () { system_connector = &CONNECTOR_SYSTEM; gslist_fill (&connectors, &CONNECTOR_ELEKTRON, &CONNECTOR_MICROBRUTE, &CONNECTOR_MICROFREAK, &CONNECTOR_PHATTY, &CONNECTOR_SUMMIT, &CONNECTOR_CZ, &CONNECTOR_PADKONTROL, &CONNECTOR_VOLCA_SAMPLE_2, &CONNECTOR_LOGUE, &CONNECTOR_SDS, &CONNECTOR_EFACTOR, &CONNECTOR_DEFAULT, &CONNECTOR_VOLCA_SAMPLE, NULL); } void regconn_unregister () { g_slist_free (g_steal_pointer (&connectors)); }