mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-14 14:17:18 +02:00
41 lines
789 B
C
41 lines
789 B
C
![]() |
#ifndef NIX_API_MAIN_H
|
||
|
#define NIX_API_MAIN_H
|
||
|
/**
|
||
|
* @defgroup libmain libmain
|
||
|
* @brief C bindings for nix libmain
|
||
|
*
|
||
|
* libmain has misc utilities for CLI commands
|
||
|
* @{
|
||
|
*/
|
||
|
/** @file
|
||
|
* @brief Main entry for the libmain C bindings
|
||
|
*/
|
||
|
|
||
|
#include "nix_api_util.h"
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
// cffi start
|
||
|
|
||
|
/**
|
||
|
* @brief Loads the plugins specified in Nix's plugin-files setting.
|
||
|
*
|
||
|
* Call this once, after calling your desired init functions and setting
|
||
|
* relevant settings.
|
||
|
*
|
||
|
* @param[out] context Optional, stores error information
|
||
|
* @return NIX_OK if the initialization was successful, an error code otherwise.
|
||
|
*/
|
||
|
nix_err nix_init_plugins(nix_c_context * context);
|
||
|
|
||
|
// cffi end
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
/**
|
||
|
* @}
|
||
|
*/
|
||
|
#endif // NIX_API_MAIN_H
|