mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
c6237266d7
Created the commandline Interface Deleated subcategries svn path=/trunk/; revision=14553
19 lines
369 B
C++
19 lines
369 B
C++
///////////////////////////////////////////////////
|
|
//
|
|
// main.h
|
|
// main.cpp's lumber room :)
|
|
///////////////////////////////////////////////////
|
|
|
|
#include "package.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
|
|
vector<string> cmdline;
|
|
bool done = false;
|
|
|
|
int Help (void);
|
|
int Install (void);
|
|
int Show (void);
|
|
|
|
int SetStatus (int status1, int status2, WCHAR* text);
|