Rundll 구현exe 기능의 간단한 코드

2336 단어 windows
Rundll 구현exe의 기능, 코드는 간단합니다.
 
#include "stdafx.h"

#include <tchar.h>
#include <windows.h>
#include <iostream.h>

int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
    HMODULE hModule;
    LPVOID lpvfn;

    if (argc < 3) 
    {
        cout << "Not enough parameters passed." << endl;
        return -1;
    }

    hModule = ::LoadLibrary(argv[1]);
    if (hModule == NULL)
    {
        cout << "Load DLL \"" << argv[1] << "\" failed!" << endl;
        return (int)GetLastError();
    }

    lpvfn = ::GetProcAddress(hModule, argv[2]);
    if (lpvfn == NULL)
    {
        cout << "Can't found specific function \"" << argv[2] << "\"!" << endl;
        return (int)GetLastError();
    }

    int iRetCode;

    int arg = argc - 1;
    TCHAR* szArg;

    __asm push esp  // save current 'esp'

    while (arg > 2)
    {
        szArg = argv[arg];

        bool bstring = false;
        while(*szArg != _T('\0'))
        {
            if (!_istdigit(*szArg))
            {
                bstring = true;
                break;
            }
            szArg ++;
        }

        if (bstring)
        {
            szArg = argv[arg];
            __asm push szArg
        }
        else
        {
            long argl = _ttol(argv[arg]);
            __asm push argl
        }

        arg --;
    }

    __asm call lpvfn
    __asm pop  esp
    __asm mov  iRetCode, eax

    ::FreeLibrary(hModule);
    return iRetCode;
}

  
 
LONG과 String 두 가지 매개 변수만 지원하고 String 중간에 빈칸이 있을 수 없습니다. (그렇지 않으면 두 개의 매개 변수로 간주됩니다.) 잘 쓰려면 매개 변수의 종류와 변환 매개 변수를 스스로 판단해야 합니다.
테스트한 매개변수는 다음과 같습니다.
 
test.exe user32.dll MessageBoxA 0 This'sOK Caption 0
 
호출에 해당: MessageBoxA(NULL, "This's OK", "Caption", MB OK);

좋은 웹페이지 즐겨찾기