[NET]
[reactos.git] / reactos / base / applications / network / net / net.h
index d86af56..93cf15d 100644 (file)
@@ -1,35 +1,42 @@
-
 /*
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS net command 
- * FILE:            
- * PURPOSE:         
- *
- * PROGRAMMERS:     Magnus Olsen (greatlord@reactos.org) 
+ * PROGRAMMERS:     Magnus Olsen (greatlord@reactos.org)
  */
 
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-#include <windows.h>
+#ifndef _NET_PCH_
+#define _NET_PCH_
 
-void help();
-int unimplemented();
+#define WIN32_NO_STATUS
 
+#include <stdarg.h>
+
+#include <windef.h>
+#include <winbase.h>
+#include <winuser.h>
+#include <winsvc.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <limits.h>
+#include <lm.h>
+#include <ndk/rtlfuncs.h>
 
-INT cmdHelp(INT argc, CHAR **argv);
+#include "resource.h"
 
-INT cmdStart(INT argc, CHAR **argv );
-INT start_service(CHAR *service);
+VOID
+PrintResourceString(
+    INT resID,
+    ...);
 
-INT cmdStop(INT argc, CHAR **argv );
-INT stop_service(CHAR *service);
+VOID help(VOID);
+INT unimplemented(INT argc, WCHAR **argv);
 
-/* Control and start rpcclient */
-BOOL myCreateProcessStartGetSzie(CHAR *cmdline, LONG *size);
-BOOL myCreateProcessStart(CHAR *cmdline, CHAR *srvlst, LONG size);
-BOOL myCreateProcess(HANDLE hChildStdoutWr, HANDLE hChildStdinRd, CHAR *cmdline);
-LONG ReadPipe(HANDLE hStdoutWr, HANDLE hStdoutRd, CHAR *srvlst, LONG size);
-LONG ReadPipeSize(HANDLE hStdoutWr, HANDLE hStdoutRd); 
-INT row_scanner_service(CHAR *buffer, LONG* pos, LONG size, CHAR *name,CHAR *save);
+INT cmdAccounts(INT argc, WCHAR **argv);
+INT cmdContinue(INT argc, WCHAR **argv);
+INT cmdHelp(INT argc, WCHAR **argv);
+INT cmdHelpMsg(INT argc, WCHAR **argv);
+INT cmdPause(INT argc, WCHAR **argv);
+INT cmdStart(INT argc, WCHAR **argv);
+INT cmdStop(INT argc, WCHAR **argv);
 
+#endif /* _NET_PCH_ */