Re: [ctypes-users] windll
Brought to you by:
theller
From: Mark L. <lar...@gm...> - 2016-11-28 17:45:52
|
Michael, You aren't understanding. ctypes doesn't provide these functions. It's Python module that allows you to call C functions exposed in DLLs (externed). The functions are you interested are provided by the Windows operating system. These are commonly referred to as win32 functions. They are very well documented on MSDN. For instance, the documentation for the functions under User32.dll are located here: https://msdn.microsoft.com/en-us/library/windows/desktop/ff468919(v=vs.85).aspx Another great resource is http://www.pinvoke.net/. While that is geared toward .NET's implementation of a cytpes like library (interop services), the function definitions are the same. Thanks, Mark On Mon, Nov 28, 2016 at 12:12 PM, Michael C <mys...@gm...> wrote: > googling python windll returns python ctypes. i dont understand how the > documentation works for this thing. :( > > ------------------------------------------------------------ > ------------------ > > _______________________________________________ > ctypes-users mailing list > cty...@li... > https://lists.sourceforge.net/lists/listinfo/ctypes-users > > |