mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 01:10:52 +08:00
24 lines
382 B
C++
24 lines
382 B
C++
#include "StdAfx.h"
|
|
#include "lib_acl.h"
|
|
#include ".\procservice.h"
|
|
|
|
void CProcService::Init(const char *procname)
|
|
{
|
|
m_procName = strdup(procname);
|
|
}
|
|
|
|
CProcService::~CProcService(void)
|
|
{
|
|
if (m_procName)
|
|
free(m_procName);
|
|
}
|
|
|
|
void CProcService::DebugArgv(void)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < m_argc; i++)
|
|
{
|
|
acl_msg_info("argv[%d]: %s", i, m_argv[i]);
|
|
}
|
|
} |