in reply to Win32API modules

a good reason to use win32api is for process/services handling, as it's totally different to unix....so the only way to get at processes/services is to use win32api. btw, you don't need to import a whole module if you just want to use a single function.....use some_module::one_function only imports that function and whatever it requires.

Replies are listed 'Best First'.
Re^2: Win32API modules
by Baratski (Acolyte) on Jul 04, 2004 at 02:43 UTC
    Thank you for both of the replys I received.
    I greatly appreciate your input. :-D