Multiple-OS Header Access

2014-02-12 Thread Malkierian
Alright, so I'm making a little utility, and it looks like I'm going to need to access OS-specific header functions on each operating system in order to make it work, because 1) I want to get a list of all active processes and their names and 2) I want to periodically check which window

Re: Multiple-OS Header Access

2014-02-12 Thread Adam D. Ruppe
On Wednesday, 12 February 2014 at 17:21:52 UTC, Malkierian wrote: not to mention C++ specific on Windows They aren't really C++ specific, you can use them from a lot of languages, including C and D. So anyway, my question is, does D have the capability of interfacing with Linux and Mac

Re: Multiple-OS Header Access

2014-02-12 Thread Adam D. Ruppe
On Wednesday, 12 February 2014 at 18:26:45 UTC, Jakob Ovrum wrote: I find POSIX much more palatable than the Windows API. POSIX is ok for what it does, but it doesn't actually do very much. The topics here, for example, are not standardized (I'm pretty sure anyway). Even de-facto standards

Re: Multiple-OS Header Access

2014-02-12 Thread Nick Sabalausky
On 2/12/2014 12:21 PM, Malkierian wrote: Alright, so I'm making a little utility, and it looks like I'm going to need to access OS-specific header functions on each operating system in order to make it work, because 1) I want to get a list of all active processes and their names and 2) I want to