Calling Kernel32 functions from D

2012-02-25 Thread Gyron
Hey Guys, i'm thinking about moving from c++ to D, but I cant live without the Kernel32 Functions, so whats the easiest way to use them in D? I mean for example ReadProcessMemory etc.

Re: Calling Kernel32 functions from D

2012-02-25 Thread Kagamin
On Saturday, 25 February 2012 at 21:50:06 UTC, Gyron wrote: Hey Guys, i'm thinking about moving from c++ to D, but I cant live without the Kernel32 Functions, so whats the easiest way to use them in D? I mean for example ReadProcessMemory etc. Declare it and call. There're ready bindings lik

Re: Calling Kernel32 functions from D

2012-02-25 Thread torhu
On 25.02.2012 22:50, Gyron wrote: Hey Guys, i'm thinking about moving from c++ to D, but I cant live without the Kernel32 Functions, so whats the easiest way to use them in D? I mean for example ReadProcessMemory etc. Look at the src\druntime\src\core\sys\windows folder in your DMD installati

Re: Calling Kernel32 functions from D

2012-02-25 Thread simendsjo
On Sat, 25 Feb 2012 22:50:05 +0100, Gyron wrote: Hey Guys, i'm thinking about moving from c++ to D, but I cant live without the Kernel32 Functions, so whats the easiest way to use them in D? I mean for example ReadProcessMemory etc. You can also take a look at this https://github.com/

Re: Calling Kernel32 functions from D

2012-02-26 Thread Gyron
On Saturday, 25 February 2012 at 22:25:57 UTC, simendsjo wrote: On Sat, 25 Feb 2012 22:50:05 +0100, Gyron wrote: Hey Guys, i'm thinking about moving from c++ to D, but I cant live without the Kernel32 Functions, so whats the easiest way to use them in D? I mean for example ReadProcessMemory