GUI-FreeRDP/freerdp/client/X11/cli/arguments.h

24 lines
349 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* arguments.h
*
* Created on: 6 июл. 2022 г.
* Author: alexander
*/
#ifndef ARGUMENTS_H_
#define ARGUMENTS_H_
typedef struct
{
int argc;
char **argv;
} Arguments;
void buildArguments(Arguments *args);
void freeArguments(Arguments *args);
void settingsLoad(char *pathDB);
void settingsFree();
#endif /* ARGUMENTS_H_ */