Подпишитесь на наш Telegram-канал, чтобы всегда быть в курсе важных обновлений! Перейти

Исходник Carbon Legacy source

Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
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:
Expand Collapse Copy
#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;
}
 
Последнее редактирование:
Назад
Сверху Снизу