Fex-II/inc/fex.h

22 lines
350 B
C
Raw Permalink Normal View History

2024-02-25 23:20:18 -06:00
//
// Created by auric on 2/25/24.
//
#ifndef FEX_H
#define FEX_H
enum Flags {
FLAG_INSTALL = 1 << 0,
FLAG_SOURCE = 1 << 1,
FLAG_REMOVE = 1 << 2,
//FLAG_LIST = 1 << 1,
FLAG_SEARCH = 1 << 3,
FLAG_FORCE = 1 << 4,
FLAG_UPGRADE = 1 << 5,
2024-02-25 23:20:18 -06:00
};
extern char* flagNames[];
//extern int flagSource, flagUninstall;
2024-02-25 23:20:18 -06:00
#endif //FEX_H