Thanks for your tip.
Creating the OSD is working now!
Now my problem is to read the bitmap from DD´s memspace.
I use ReadProcessMemory, but how can i get the size of the OSD bitmap?
Any ideas?
Search found 4 matches
- Sat Mar 08, 2008 4:51 am
- Forum: Module / Plugin Programming
- Topic: Creating OSD from an C# Application
- Replies: 3
- Views: 8024
- Sun Mar 02, 2008 4:32 am
- Forum: Module / Plugin Programming
- Topic: Creating OSD from an C# Application
- Replies: 3
- Views: 8024
Creating OSD from an C# Application
Hello, i´m trying to create an OSD surface using an C++ DLL. Here is the code: int OSDTEST(HWND DDHWND, DWORD dwHeight, DWORD dwWidth, DWORD dwLeft, DWORD dwTop, BYTE Transparency) { TOSDSurface osd; osd.dwSize = sizeof(osd); osd.dwHeight = dwHeight; osd.dwWidth = dwWidth; osd.dwTop = dwTop; osd.dw...
- Mon Feb 11, 2008 9:54 am
- Forum: Module / Plugin Programming
- Topic: SendMessage and DvbDream
- Replies: 3
- Views: 6933
- Sun Feb 10, 2008 7:37 am
- Forum: Module / Plugin Programming
- Topic: SendMessage and DvbDream
- Replies: 3
- Views: 6933
SendMessage and DvbDream
Hello, i am trying to send a message from an c# application to DD using the API function "SendMessage". Example: SendMessage(ipDD, 0x0400 + 323, 0, 0x00000002); 1. param = HWND of DD´s mainwindow (C# IntPtr) 2. param = message type "WM_REMOTE_DEVICE_MSG" 3. param = wParam zero 4. param = lParam key...