First  |  Prev |  Next  |  Last
Pages: 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
clip board logger
Here is a code I wrote to log all clipboard text in the log file. #include <windows.h> #include <iostream> #include <stdio.h> #include <string.h> #include <stdlib.h> using namespace std; void myfree(); FILE *fp; char *p; HANDLE clip; int main() { HANDLE clip; p=(char*)malloc(1); *p='\... 4 Nov 2009 15:18
Windows 7 Test drive or emulator
Hi everybody: Do you know if there is something like www.vistatestdrive.com but for Windows 7? Any help will be appreciated very much. Regards, Marco ---------------------------------------- Freedom is not a permission for chaos. ... 4 Nov 2009 11:56
Loading Kernel32.dll explicitly before calling its functions
Hi, I've been reading some codes other people wrote at my work. One of the interesting thing I found was that when calling SetThreadPreferredUILanguages() and some other functions (kernel32.dll exported functions), the code first loadlibrary'es the kernel32.dll, gets a function pointer to the function of interes... 2 Nov 2009 17:56
[ANN] Idle Scripting Language 1.0
Idle 1.0 released ----------------- I am happy to announce the release of Idle version 1.0. Like the beta versions, this final 1.0 release is a binaries-only package. However, a full source code release will follow shortly, hopefully before the year is out. See http://idle.thomaslauer.com for details about Id... 2 Nov 2009 08:59
How to get WM_CHAR from non child window
Hi all. I am trying to write some thing like hot key and i need to get WM_CHAR from desktop window. the window name is "Progman". to get it i used this code: FARPROC DeskWndProc; DeskWndProc = (FARPROC)SetWindowLong(DeskWnd, GWL_WNDPROC, (DWORD) DeskProc); SetWindowLong(DeskWnd, GWL_WNDPROC, (DWORD) DeskWndPro... 3 Nov 2009 03:49
ANN: Seed7 Release 2009-11-01
Hello, I have released a new version of Seed7: seed7_05_20091101.tgz In the Seed7 programming language new statements and operators can be declared easily. Types are first class objects and therefore templates/generics need no special syntax. Object orientation is used when it brings advantages and not in plac... 1 Nov 2009 18:46
Build ATL x64
Hello, I'm trying to do some COM object with ATL. http://www.codeproject.com/KB/shell/copypathext.aspx When build for x86, there are no error. But when I build for x64 there are error tell me that atls.lib not found "LINK : fatal error LNK1104: cannot open file 'atlsd.lib'" I think it because there no atls.lib ... 1 Nov 2009 00:15
Converting files encoded with Philips CELP to PCM
>> MMReg.h contains a lot of structures for many kind of codec, I can't find one for Philips codec. The question is: Where can I find the information ? It's defined as : #define WAVE_FORMAT_PHILIPS_CELP 0x0120 Already got that one. But this is not enough. I need all the parameters for the othe... 31 Oct 2009 15:27
[acmStreamConvert] Converting files encoded with Philips CELP to PCM
Hello, I have the need to convert files from Philips dictation system (Philips CELP codec) to PCM wave files. I know how to use the ACM API (acmStreamOpen, acmStreamConvert and the likes) to convert from one format to another, for example from MP3 to PCM. I'm almost sure I can use the exact same programming to u... 31 Oct 2009 04:37
Hook success in injected dll but proc never called
Hi to all, I have injected a DLL into another process and want to hook a window thread on the target process in a function in that DLL (SetWindowsHooksEx is not called in DllMain but in a constructor function in the injected dll called using CreateRemoteThread). I called 'SetWindowsHookEx(WH_MOUSE, (HOOKPROC)HookP... 3 Nov 2009 08:10
First  |  Prev |  Next  |  Last
Pages: 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58