Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~5K People Reached
About Me

Effective use of C++ and C# outside of classroom projects. I also have been using the Windows API for several years, and I have used QT, Boost, and other popular libraries to build complex C++ applications. I have read several "ancient" manuals…

Interests
C, C++, C#
Favorite Tags
Member Avatar for Archit Gupta

#include<iostream.h> #include<conio.h> #include<stdio.h> #include<process.h> struct room { char type[3]; int rmn; int terrif; }; void add(room *,int); void main() { clrscr(); int n,r,modifychoice,c,a,i; room rm[5]; cout<<endl<<endl; while(1) { cout<<"\t\t\t"<<"HOTEL DAVIANS"<<endl<<endl; cout<<"\t\t "<<"MENU FOR HOTEL DAVIANS -"<<endl; cout<<"\t\t"<<"1. Enter rooms record for the hotel "<<endl; cout<<"\t\t"<<"2. Modify rooms records"<<endl; cout<<"\t\t"<<"3. Check …

Member Avatar for Archit Gupta
0
269
Member Avatar for happyHacker

How do you normalize 16 bit PCM audio 44100Hz mono? I have the raw data, but don't know what to do with it, it is signed as far as I can tell.

Member Avatar for happyHacker
0
149
Member Avatar for happyHacker

Beginner question about these intents and activities... If I plan to do something with the phone hardware or file system, is it necessary to use an activity for doing so? What is the purpose behind this system?

Member Avatar for NardCake
0
102
Member Avatar for happyHacker

Windows 7 64 bit. Toolhelp32ReadProcessMemory http://msdn.microsoft.com/en-us/library/windows/desktop/ms686826(v=vs.85).aspx Am I wrong to assume this can be used to read ALL memory used by a process, including the memory used to store the image, PID, stack, heap, and everything? Also, what is meant by the "base address" ? This seems to work for …

0
63
Member Avatar for happyHacker

Playing around with WinDbg, I'm wondering how to view details of every Process object instance (I'm assuming there is more than one). WinDbg reports I have an object named: ntkrnlmp!_EPROCESS with members: +0x000 Pcb : _KPROCESS +0x160 ProcessLock : _EX_PUSH_LOCK +0x168 CreateTime : _LARGE_INTEGER +0x170 ExitTime : _LARGE_INTEGER +0x178 RundownProtect …

Member Avatar for happyHacker
0
407
Member Avatar for Chase.Dangerfield

Hey I was trying to create an Managed Dll so i could call it from C# Im using i tried using pragma comment (lib, "user32.lib") I'm Continually getting linker error with the project, even though I have linked the header file and the lib to the project. Another Clue I …

Member Avatar for happyHacker
0
781
Member Avatar for britto

# Simulating mouse click # #include <windows.h> using namespace std; // Forward declaration of the LeftClick function void LeftClick ( ); // Forward declaration of the MouseMove function void MouseMove ( int x, int y ); int main() { MouseMove(100, 100); LeftClick(); return 0; } // LeftClick function void LeftClick …

Member Avatar for triumphost
0
3K
Member Avatar for raphael1

I followed a tutorial online on how to create a obj file parser, so far my parser reads a obj file and stores all the vertices into a struct named coordinate. Am not quite sure, how to use the coordinates in my struct in my main graphic pipeline My parser: …

Member Avatar for happyHacker
0
449
Member Avatar for happyHacker

I'm in the middle of reading "Windows Internals 6th edition", and after mentioning 32 bit threads running on 64 bit Windows have 3 stacks, one user-mode 32-bit, a 64-bit user-mode, and a kernel-mode stack (along with a 32 bit CONTEXT and a 64 bit CONTEXT "block")--when it proceeds to explain …

Member Avatar for happyHacker
0
455