Restructure project and organize code.
This commit is contained in:
13
src/loader/utils/cmdline.h
Normal file
13
src/loader/utils/cmdline.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
struct cmdline
|
||||
{
|
||||
char *cfgfile;
|
||||
unsigned int offload : 1;
|
||||
unsigned int skb : 1;
|
||||
unsigned int time;
|
||||
unsigned int list : 1;
|
||||
unsigned int help : 1;
|
||||
};
|
||||
|
||||
void ParseCommandLine(struct cmdline *cmd, int argc, char *argv[]);
|
||||
Reference in New Issue
Block a user