|
|
#1 |
|
Banned
Join Date: Aug 04
Location: Cocoa Beach, FL Chit Chat Posts: 500+
Posts: 4,371
![]() ![]() ![]() |
Mimicing Keyboard events using _asm in C++
I'm wanting to work with a low level function in C++ that mimics keyboard strokes without the user pressing the keyboard to any active, or possible inactive windows. I don't know much on Assembly, but I have the function set up to use later on for a DLL file once I have the code:
Code:
int _stdcall Send_Keys(unsigned char Key, int *hWnd)
{
//hWnd is a handle to a Window.
_asm{
//assembly source code here
}
return 1;
}
|
|
|
|
|
|
#2 | |
|
Hyperactive Member
Join Date: Feb 03
Location: Greeneville, TN
Posts: 274
![]() |
Re: Mimicing Keyboard events using _asm in C++
Quote:
You'll have to use the windows API to do that and there will not be much gain even if you do it in asm.
__________________
Education is an admirable thing, but it is well to remember from time to time that nothing that is worth knowing can be taught. - Oscar Wilde My little blog: http://vblore.blogspot.com/ |
|
|
|
|
|
|
#3 |
|
Banned
Join Date: Aug 04
Location: Cocoa Beach, FL Chit Chat Posts: 500+
Posts: 4,371
![]() ![]() ![]() |
Re: Mimicing Keyboard events using _asm in C++
That's the thing though. The API's such as SendInput and keybd_event doesn't control programs that use DirectX's DirectInput.
|
|
|
|
|
|
#4 |
|
Hyperactive Member
Join Date: Feb 03
Location: Greeneville, TN
Posts: 274
![]() |
Re: Mimicing Keyboard events using _asm in C++
The problem is that you cannot generate interrupts from ASM when your programming in 32 bit protected mode. That pretty much means we are forced to do things the windows way.
I'm thinking that direct input must read from the device driver directly. So you'll have to search msdn to figure out how to deal with that situation. You may end up having to have a device driver.
__________________
Education is an admirable thing, but it is well to remember from time to time that nothing that is worth knowing can be taught. - Oscar Wilde My little blog: http://vblore.blogspot.com/ |
|
|
|
![]() |
|
||||||
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|