Исходник Carbon Legacy source

ебало вальни
Забаненный
Статус
Оффлайн
Регистрация
25 Май 2022
Сообщения
181
Реакции[?]
71
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Начинающий
Статус
Оффлайн
Регистрация
22 Сен 2018
Сообщения
25
Реакции[?]
5
Поинты[?]
3K
If anyone's trying to use this, here is a cleaned up entry.cpp. To stop a lot of the crashing load cfg once-connected and remove findfirstrecord from resolver.


Entry.cpp:
#include "includes.h"
#include <thread>
#include <chrono>
#include <tchar.h>
#include <algorithm>
#include <iterator>
#include <consoleapi.h>

int __stdcall DllMain(HMODULE self, ulong_t reason, void* reserved) {
    if (reason == DLL_PROCESS_ATTACH)
    {
        HANDLE thread = CreateThread(nullptr, 0, Client::init, nullptr, 0, nullptr);
        if (!thread)
            return 0;
        return 1;
    }
    return 0;
}
 
Последнее редактирование:
Сверху Снизу