Code Monkey home page Code Monkey logo

psvince's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

psvince's Issues

CloseHandle(handleToSnapshot)

It would be nice to finally close the handleToSnapshot opened in the new function EnumProcs2.
Also see the MIcrosoft example at href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms686701(v=vs.85).aspx
My overall suggestion for code enhancement:

BOOL WINAPI EnumProcs2(char* procname)
{
    //MessageBox(nullptr, procname, "msg", MB_OK);
    HANDLE handleToSnapshot;
    PROCESSENTRY32 procEntry;
    BOOL retcode = FALSE;

    // Take a snapshot of all processes in the system
    handleToSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
    if (handleToSnapshot != INVALID_HANDLE_VALUE) {
        procEntry.dwSize = sizeof(PROCESSENTRY32);
        if (Process32First(handleToSnapshot, &procEntry)) {
            do {
                //MessageBox(nullptr, procEntry.szExeFile, "msg", MB_OK);
                if (_stricmp(procname, procEntry.szExeFile) == 0) {
                    retcode = TRUE;
                    break;
                }
            } while (Process32Next(handleToSnapshot, &procEntry));
        }
        // Destroy the snapshot handle
        CloseHandle(handleToSnapshot);
    }
    return retcode;
}

P.S.: My tests on 64 bit Windows 7 and 32 bit Windows XP carried out, that IsModuleLoaded2 actually detects both, 64 bit and 32 bit processes, while IsModuleLoaded only detects 32 bit processes.

vdmdbg.h

As Windows 95 is not supported anymore in psvince.dll, "#include <vdmdbg.h>" may be removed.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.