15 lines
192 B
C++
15 lines
192 B
C++
#pragma once
|
|
#ifndef PRIVATE_FUNCTION
|
|
#define PRIVATE_FUNCTION
|
|
#include "Base.h"
|
|
|
|
namespace private_funcion
|
|
{
|
|
auto create_start_process(LPCSTR path)->BOOL;
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif // !PRIVATE_FUNCTION
|