Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenmain.c
Go to the documentation of this file.
00001 00002 /* 00003 * COPYRIGHT: See COPYING in the top level directory 00004 * PROJECT: ReactOS net command 00005 * FILE: 00006 * PURPOSE: 00007 * 00008 * PROGRAMMERS: Magnus Olsen (greatlord@reactos.org) 00009 */ 00010 00011 #include "net.h" 00012 00013 00014 00015 int main(int argc, char **argv) 00016 { 00017 if (argc<2) 00018 { 00019 help(); 00020 return 1; 00021 } 00022 00023 if (_stricmp(argv[1],"ACCOUNTS")==0) 00024 { 00025 return unimplemented(); 00026 } 00027 if (_stricmp(argv[1],"COMPUTER")==0) 00028 { 00029 return unimplemented(); 00030 } 00031 if (_stricmp(argv[1],"CONFIG")==0) 00032 { 00033 return unimplemented(); 00034 } 00035 if (_stricmp(argv[1],"CONTINUE")==0) 00036 { 00037 return unimplemented(); 00038 } 00039 00040 if (_stricmp(argv[1],"FILE")==0) 00041 { 00042 return unimplemented(); 00043 } 00044 if (_stricmp(argv[1],"GROUP")==0) 00045 { 00046 return unimplemented(); 00047 } 00048 if (_stricmp(argv[1],"HELP")==0) 00049 { 00050 return cmdHelp(argc,&argv[1]); 00051 } 00052 if (_stricmp(argv[1],"HELPMSG")==0) 00053 { 00054 return unimplemented(); 00055 } 00056 if (_stricmp(argv[1],"LOCALGROUP")==0) 00057 { 00058 return unimplemented(); 00059 } 00060 if (_stricmp(argv[1],"NAME")==0) 00061 { 00062 return unimplemented(); 00063 } 00064 if (_stricmp(argv[1],"PRINT")==0) 00065 { 00066 return unimplemented(); 00067 } 00068 if (_stricmp(argv[1],"SEND")==0) 00069 { 00070 return unimplemented(); 00071 } 00072 if (_stricmp(argv[1],"SESSION")==0) 00073 { 00074 return unimplemented(); 00075 } 00076 if (_stricmp(argv[1],"SHARE")==0) 00077 { 00078 return unimplemented(); 00079 } 00080 00081 if (_stricmp(argv[1],"START")==0) 00082 { 00083 return cmdStart(argc, &argv[1]); 00084 } 00085 if (_stricmp(argv[1],"STATISTICS")==0) 00086 { 00087 return unimplemented(); 00088 } 00089 if (_stricmp(argv[1],"STOP")==0) 00090 { 00091 return cmdStop(argc, &argv[1]); 00092 } 00093 if (_stricmp(argv[1],"TIME")==0) 00094 { 00095 return unimplemented(); 00096 } 00097 if (_stricmp(argv[1],"USE")==0) 00098 { 00099 return unimplemented(); 00100 } 00101 if (_stricmp(argv[1],"USER")==0) 00102 { 00103 return unimplemented(); 00104 } 00105 if (_stricmp(argv[1],"VIEW")==0) 00106 { 00107 return unimplemented(); 00108 } 00109 00110 help(); 00111 return 1; 00112 } 00113 00114 00115 int unimplemented() 00116 { 00117 puts("This command is not implemented yet"); 00118 return 1; 00119 } 00120 00121 00122 00123 00124 00125 00126 00127 00128 00129 00130 00131 00132 00133 00134 00135 00136 00137 00138 Generated on Sun May 27 2012 04:16:38 for ReactOS by
1.7.6.1
|