Forum: C++ Apr 2nd, 2004 |
| Replies: 7 Views: 11,752 Sleep is a kernel32.dll function. All exports of kernel32.dll are typically associated with windows.h. |
Forum: C Apr 2nd, 2004 |
| Replies: 3 Views: 5,009 One method to do such is to use gdi+. I did it before, but I can't remember exactly how. Hopefully google, coupled with my reference, can help. :] |
Forum: C++ Mar 31st, 2004 |
| Replies: 7 Views: 4,603 deprecated means obsolete. |
Forum: C++ Mar 31st, 2004 |
| Replies: 2 Views: 15,517 Open winsock on port 23, then just send the data away. Assuming you'll get a reply for every telnet command you send, you can just use blocking winsock commands in a loop.
i.e:
... |
Forum: C++ Mar 31st, 2004 |
| Replies: 6 Views: 26,438 Another note: If you're using inline asm in the middle of a function, you'll want to keep to be using eax, ecx and edx. Some compilers keep registers like esi zeroed all the way through a function to... |
Forum: C++ Mar 31st, 2004 |
| Replies: 7 Views: 7,934 |
Forum: C++ Mar 30th, 2004 |
| Replies: 7 Views: 7,934 ****. I wrote a big essay on how to do it only to be confronted by a screen asking me to logon, then I lost it all.:evil:
Here I go again..
API hooking is usually done by placing a jmp... |
Forum: C++ Mar 30th, 2004 |
| Replies: 6 Views: 26,438 Basically, in c++, if you wanted to create a pure asm function, using inline, you'd do something similar to this:
void __declspec(naked) AddTwoNumbers(int* storehere, int number1, int... |