Files
UltraGrid/tools/ug_stub.c
Martin Pulec 5a6fb12536 tools/benchmark_ff_convs: follow API update
also ug_stub needs some more stuff
2024-10-08 15:04:35 +02:00

32 lines
525 B
C

/**
* @file
* replacement for UltraGrid functions/global objects that are not linked-in,
* usually the ones located in host.cpp
*/
#include <stdbool.h>
#include <stddef.h>
char *uv_argv[] = { "ug_stub", NULL };
const char *
get_commandline_param(const char *key)
{
(void) key;
return NULL;
}
void
register_param(const char *param, const char *doc)
{
(void) param;
(void) doc;
}
bool
tok_in_argv(char **argv, const char *tok)
{
(void) argv, (void) tok;
return false;
}