ExclamationHelp With Code On .DLL

Posts 1–9 of 9 · Page 1 of 1
Help With Code On .DLL
Hey can someone like @Qmoainx (lol) or anyone that can use c++ really good tell me why, when i drag a .dll like a hack into MVS 2010 it reads an error like , cannot read following file/project?

INdonesian translation____
Hei bisa seseorang seperti @ Qmoainx (lol) atau siapa pun yang dapat menggunakan c + + benar-benar baik katakan padaku mengapa, ketika saya tarik dll. Seperti hack ke MVS 2010 itu membaca sebuah kesalahan seperti, tidak dapat membaca file berikut / proyek?
It's working for me. Maybe your dll is corrupt or something. Maybe you are dragging it on wrong area ? lol
Upload the DLL?
Why are you trying to open a .dll file with Microsoft Visual Studio?
Just click File, Open, then select the DLL.
He wwants to see the source
Quote Originally Posted by kibbles18 View Post
He wwants to see the source
That is what I was wondering LOL
@op, you cannot just open a .dll in VS and see the source. Decompile it, and RE what you can.
You cannot .
If you're looking to making your own, it's typically like this I think:
Code:
#include <iostream>
extern "C"
{
    __declspec(dllexport) void __stdcall HelloWorld()
    {
        cout << "Hello World!";
    }
}
And I haven't dusted off my C++ compilers in quite some time, so I forgot what it was to import a function, but it's similar to the above I believe.
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?