How to create dll file for Mu Online

Results 1 to 3 of 3
  1. #1
    Member darkmuonline is offline
    MemberRank
    Aug 2016 Join Date
    76Posts

    How to create dll file for Mu Online

    Hi all, i need to create dll file for my client, but i dont have experience to do it and i need some video or guide.

    code by
    HWND hWnd = FindWindow(NULL,"MU"); //Launcher title
    if(hWnd == 0)
    {
    // additional information
    STARTUPINFOA si;
    PROCESS_INFORMATION pi;


    // set the size of the structures
    ZeroMemory(&si, sizeof(si));
    si.cb = sizeof(si);
    ZeroMemory(&pi, sizeof(pi));


    // start the program up
    CreateProcessA
    (
    "mu.exe", // the path
    NULL, // Command line
    NULL, // Process handle not inheritable
    NULL, // Thread handle not inheritable
    FALSE, // Set handle inheritance to FALSE
    CREATE_NEW_CONSOLE, // Opens file in a separate console
    NULL, // Use parent's environment block
    NULL, // Use parent's starting directory
    &si, // Pointer to STARTUPINFO structure
    &pi // Pointer to PROCESS_INFORMATION structure
    );
    // Close process and thread handles.
    CloseHandle(pi.hProcess);
    CloseHandle(pi.hThread);


    ExitProcess(0);
    return;
    }
    Thanks!


  2. #2
    Enthusiast Trang is offline
    MemberRank
    Apr 2017 Join Date
    0x0000428Location
    26Posts

    Re: How to create dll file for Mu Online

    don't be lazy, lot of tutorials on google, youtube

  3. #3
    Member darkmuonline is offline
    MemberRank
    Aug 2016 Join Date
    76Posts

    Re: How to create dll file for Mu Online

    c++ order c# ??



Advertisement