Searched refs:PROGRAM_NAME_SIZE (Results 1 – 1 of 1) sorted by relevance
36 constexpr size_t PROGRAM_NAME_SIZE { 256 }; variable172 static char programName[PROGRAM_NAME_SIZE] = {}; in GetProgramName()209 size_t copySize = std::min(tempName.size(), PROGRAM_NAME_SIZE - 1); in GetProgramName()214 errno_t result = memcpy_s(programName, PROGRAM_NAME_SIZE, tempName.c_str(), copySize); in GetProgramName()