GithubHelp home page GithubHelp logo

memorymodule's People

Watchers

 avatar

memorymodule's Issues

64x dll load

What steps will reproduce the problem?
1. I Try Load x64 bit dll.
2. When run LoadLibrary, i see violation access error

Os:Windows 7 x64
IDE:Delphi XE2

I wanna load x64 dll, what need change to do it?



Original issue reported on code.google.com by [email protected] on 30 Jan 2012 at 11:08

Fix for DEP compatibility (Data Execution Prevention)

The unit does not work on operating systems where DEP is enabled by default. 
That's because the dll is loaded into non-executable memory areas. 

Fixing this issue is easy: 
In all VirtualAlloc() calls, replace the "PAGE_READWRITE" constant by 
"PAGE_EXECUTE_READWRITE". That means: replace "PAGE_READWRITE" by 
"PAGE_EXECUTE_READWRITE" everywhere in the file except the occurence in the 
GetSectionProtection() function. 

Original issue reported on code.google.com by [email protected] on 10 Nov 2014 at 9:26

IncP instead of DecP

In version 0.0.4 and 0.0.41 I see at line 545 the instruction:

      DecP(lp_section, SizeOf(TImageSectionHeader));

But I think that instead it should be:

      IncP(lp_section, SizeOf(TImageSectionHeader));

because the code is going through the list of sections in ascending order...

Please let me know if this makes sense... 

Original issue reported on code.google.com by [email protected] on 11 Mar 2013 at 4:31

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.