C++ All of dutu's sources (yes, the paid access sources)

retard
Пользователь
Пользователь
Статус
Оффлайн
Регистрация
13 Мар 2021
Сообщения
372
Реакции
68
Пожалуйста, авторизуйтесь для просмотра ссылки.

I honestly do not know how old these are, and honestly I do not give a fuck, I'm done of you selling your shit supremacy sources no one gives a fuck about, honestly fuck off already man.

I wouldn't recommend using any of these sources for anything, but maybe you can take some menu's n shit, idc do whatever u want.

I regret paying for this
 
Последнее редактирование:
Where u find guys who sell sources? I wanna buy some xD
 
  • Печально
Реакции: seat
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
:kappa: this guy is an actual ape when it comes to pasting
 
you don't understand the romainian lifestyle man
 
those are not all, full archieve has 1.0gb, and yes i can prove that
9589C4A6-C104-4E7E-A0A1-835A09E8B760.jpeg
 
there is all legacy src's?
 
checksum_crc.h:
Expand Collapse Copy
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: Generic CRC functions
//
// $NoKeywords: $
//=============================================================================//
#ifndef CHECKSUM_CRC_H
#define CHECKSUM_CRC_H
#ifdef _WIN32
#pragma once
#endif

typedef unsigned int CRC32_t;

void CRC32_Init(CRC32_t *pulCRC);
void CRC32_ProcessBuffer(CRC32_t *pulCRC, const void *p, int len);
void CRC32_Final(CRC32_t *pulCRC);
CRC32_t    CRC32_GetTableEntry(unsigned int slot);

inline CRC32_t CRC32_ProcessSingleBuffer(const void *p, int len)
{
    CRC32_t crc;

    CRC32_Init(&crc);
    CRC32_ProcessBuffer(&crc, p, len);
    CRC32_Final(&crc);

    return crc;
}

#endif // CHECKSUM_CRC_H
 
Назад
Сверху Снизу