Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // MGv2_code_generator.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
- //
- #include <iostream>
- #include <fstream>
- int main()
- {
- std::fstream bin_file;
- bin_file.open("packet.bin", std::fstream::in | std::fstream::binary);
- if (!bin_file)
- {
- std::cout << "Fuck you leather man" << std::endl;
- return -1;
- }
- bin_file.seekg(0, std::ios_base::end);
- long bin_file_size = bin_file.tellp(); //получение размера файла
- bin_file.seekg(0, std::ios_base::beg);
- char* buffer = new char[bin_file_size];
- unsigned char* pData = nullptr;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement