//codes.h
//Copyright (C) 2010 Maximilian Stein
/* This file is part of CMD++.
*
* CMD++ is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* CMD++ is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with CMD++. If not, see <http://www.gnu.org/licenses/>.
*/
//fileversion: 0.1
#ifndef _CODES_H_
#define _CODES_H_
/**
* @brief This enum contains all command codes used by the CLIsystem's hash function.
*/
enum ECommandCodes {
ECC_EXIT = 0x56bf,
ECC_PWD = 0xac50,
ECC_CD = 0x2fc7,
ECC_CDDD = 0x5128, //"cd.."
ECC_INFO = 0x3db1,
ECC_HELP = 0x2bae,
ECC_H = 0xc295, //-h
ECC_HH = 0x240d, //--help
};
#endif //ifndef _CODES_H_