- Strength to Increase Rep
- +3
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Re: MSDN says that GetMessage executed by an application executes the keyboard_hook. Replace the messagebox() by the following code: [CODE] MSG messages; while (GetMessage (&messages, NULL, 0, 0)) { /* Translate virtual-key messages into character messages */ TranslateMessage(&messages); /* Send message to WindowProcedure */ DispatchMessage(&messages); } [/CODE] | |
Hi all, I was looking for a piece of code to simply obtain the manufacturer of the CPU in your computer (might also be known under vendor ID). I found it difficult to obtain a code as basic as possible. I had already coded this once in Assembly language, still … | |
Hi all, Yesterday I ran into RDTSC, very useful to have knowledge of, especially when you are using performance counters and timers etc. RDTSC will return a value to you (64 bit) which contains the current clock cycle of your processor. I have made a little program which requests the … | |
Re: Don't look at the size of the sample code I provided you down here, otherwise I will scare you of maybe. Here is a sample of a program which [B]connects to a server by using sockets[/B] initialized with the [B]WSAStartup[/B] function. Use API32 reference of microsoft to understand what the … |