MajidPasha 0 Posted September 29, 2011 Hi All I have an application which call Dinput.dll (DirectInput) to list connected game controllers on this registry key: [HKEY_CURRENT_USER\System\CurrentControlSet\Control\MediaProperties\PrivateProperties\DirectInput] I had used a API monitor on the application and I had found that it uses "DirectInputCreateEx" on Dinput.Dll. I want to do this call (DirectInputCreateEx) on Dinput.dll via AutoIt if possible. I'm newbie, If it is possible, I'll really appreciate the man who give me the exact script for doing this in AutoIt Share this post Link to post Share on other sites
Ramzes 1 Posted September 29, 2011 To call function in a DLL you must use DLLCall. But if you want to do it correctly you need read some documentation or tutorial about Direct. Sorry for my bad English but nobody is perfect. [font=arial, helvetica, sans-serif]Ramzes[/font] Share this post Link to post Share on other sites
JohnOne 1,603 Posted September 29, 2011 I'll really appreciate the man who give me the exact script for doing this in AutoIt How about "really appreciating" yourself. This is not a free drive through code joint. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites
ProgAndy 88 Posted September 29, 2011 (edited) If you need some documentation, Microsoft provides it here: http://msdn.microsoft.com/en-us/library/windows/desktop/ee416853%28v=vs.85%29.aspxGood luck Edit: typo. Edited September 29, 2011 by ProgAndy *GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes Share this post Link to post Share on other sites