Co byste vytkli tomuto kódu? wchar_t* DuplicateFileNameEx(wchar_t* FileName, int Count) { wchar_t* temporaryAlloc = null; if (Count != 0) { temporaryAlloc = new wchar_t[Count + 1]; memcpy(temporaryAlloc, FileName, Count * sizeof(wchar_t)); temporaryAlloc[(Count
Read More...