- Mesaj
- 6
- Beğeni
- 3
- Puan
- 28
- Ticaret Puanı
- 0
Kod:
main cpepe geliyorsun v ekodu değitşriyorsun bir daha açılmıyor.
struct FileCompressor
{
std::vector<unsigned char> data;
std::vector<unsigned char> src;
unsigned int compressed;
unsigned int decompressed;
unsigned int hash;
FileCompressor()
{
data.resize(FILE_COMPRESSOR_MEM);
src.resize(FILE_COMPRESSOR_MEM);
}
bool operator()(const std::string& source)
{
compressed = 0;
decompressed = 0;
hash = 0;
// Dosyanın açılmasını engellemek için sadece false döndürüyoruz
std::cerr << "File opening is disabled. Compression cannot proceed." << std::endl;
return false; // Dosya açma işlevini tamamen engelliyoruz
}
};
konuya hücüm eden düzenciler