mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
20 lines
369 B
C
20 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);
|