Roxen.git
/
server
/
tools
/
ntroxen
/
startdll
/
cmdline.cpp
version
»
Context lines:
10
20
40
80
file
none
3
Roxen.git/server/tools/ntroxen/startdll/cmdline.cpp:1:
// cmdline.cpp: implementation of the CCmdLine class. //
-
// $Id: cmdline.cpp,v 1.
1
2001/
05
/
29
14
:35:
39
tomas Exp $
+
// $Id: cmdline.cpp,v 1.
2
2001/
06
/
18
16
:35:
15
tomas Exp $
// ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "startdll.h" #include "cmdline.h" #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__;
Roxen.git/server/tools/ntroxen/startdll/cmdline.cpp:735:
//'-install'|'--install') // if (Match(*argv, "-install", NULL, NULL) || Match(*argv, "--install", NULL, NULL) ) { m_bInstall = TRUE; type = eArgStart; return 1; }
+
//'-install'|'--install')
+
//
+
if (Match(*argv, "-register", NULL, NULL) ||
+
Match(*argv, "--register", NULL, NULL) )
+
{
+
m_bRegister = TRUE;
+
type = eArgStart;
+
return 1;
+
}
+
//'-remove'|'--remove') // if (Match(*argv, "-remove", NULL, NULL) || Match(*argv, "--remove", NULL, NULL) ) { m_bRemove = TRUE; type = eArgStart; return 1; }