Click here to Skip to main content
16,005,162 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionDisplaying Graph Controls values in a grid. Pin
pod_9998-Nov-07 10:11
pod_9998-Nov-07 10:11 
JokeRe: Displaying Graph Controls values in a grid. Pin
shpid3r8-Nov-07 10:18
shpid3r8-Nov-07 10:18 
AnswerRe: Displaying Graph Controls values in a grid. Pin
Llasus8-Nov-07 12:56
Llasus8-Nov-07 12:56 
GeneralRe: Displaying Graph Controls values in a grid. Pin
pod_9999-Nov-07 0:16
pod_9999-Nov-07 0:16 
AnswerRe: Displaying Graph Controls values in a grid. Pin
Nelek8-Nov-07 21:36
protectorNelek8-Nov-07 21:36 
GeneralRe: Displaying Graph Controls values in a grid. Pin
pod_9999-Nov-07 0:15
pod_9999-Nov-07 0:15 
QuestionOT: Linux ELF Executable Checksum Algorithm Pin
Jeffrey Walton8-Nov-07 9:14
Jeffrey Walton8-Nov-07 9:14 
AnswerRe: OT: Linux ELF Executable Checksum Algorithm Pin
Randor 8-Nov-07 10:23
professional Randor 8-Nov-07 10:23 
Hello Jeff,

Executable and Linking Format uses a hash.

unsigned long ElfHash(unsigned char* c)
{
	unsigned long hash = 0;
	unsigned long x = 0;
	while (*c)
	{
		hash = (hash << 4 ) + *c++;
		if(x = hash & 0xF0000000)
		{
			hash ^= x >> 24;
		}
		hash &= ~x;
	}
    return hash;
}


This project is great for researching ELF format:

http://sourceforge.net/projects/elfio/[^]
GeneralRe: OT: Linux ELF Executable Checksum Algorithm Pin
Jeffrey Walton8-Nov-07 10:48
Jeffrey Walton8-Nov-07 10:48 
QuestionBitBlt w/ ROP codes in GDI+ Pin
Force Code8-Nov-07 8:00
Force Code8-Nov-07 8:00 
AnswerRe: BitBlt w/ ROP codes in GDI+ Pin
bob169728-Nov-07 8:14
bob169728-Nov-07 8:14 
AnswerRe: BitBlt w/ ROP codes in GDI+ Pin
Mark Salsbery8-Nov-07 8:26
Mark Salsbery8-Nov-07 8:26 
GeneralRe: BitBlt w/ ROP codes in GDI+ Pin
Force Code8-Nov-07 8:44
Force Code8-Nov-07 8:44 
GeneralRe: BitBlt w/ ROP codes in GDI+ Pin
led mike8-Nov-07 9:03
led mike8-Nov-07 9:03 
GeneralRe: BitBlt w/ ROP codes in GDI+ Pin
Force Code8-Nov-07 9:22
Force Code8-Nov-07 9:22 
GeneralRe: BitBlt w/ ROP codes in GDI+ Pin
Mark Salsbery8-Nov-07 9:07
Mark Salsbery8-Nov-07 9:07 
GeneralRe: BitBlt w/ ROP codes in GDI+ Pin
Force Code8-Nov-07 9:21
Force Code8-Nov-07 9:21 
GeneralRe: BitBlt w/ ROP codes in GDI+ Pin
Mark Salsbery8-Nov-07 9:31
Mark Salsbery8-Nov-07 9:31 
GeneralRe: BitBlt w/ ROP codes in GDI+ Pin
Force Code8-Nov-07 9:53
Force Code8-Nov-07 9:53 
GeneralRe: BitBlt w/ ROP codes in GDI+ Pin
Mark Salsbery8-Nov-07 10:05
Mark Salsbery8-Nov-07 10:05 
QuestionWinCE USB to Virtual Serial Port Pin
shpid3r8-Nov-07 7:01
shpid3r8-Nov-07 7:01 
AnswerRe: WinCE USB to Virtual Serial Port Pin
Cedric Moonen8-Nov-07 7:19
Cedric Moonen8-Nov-07 7:19 
GeneralRe: WinCE USB to Virtual Serial Port Pin
shpid3r8-Nov-07 7:34
shpid3r8-Nov-07 7:34 
GeneralRe: WinCE USB to Virtual Serial Port Pin
Cedric Moonen8-Nov-07 20:10
Cedric Moonen8-Nov-07 20:10 
QuestionBlue - General Purpose C++ Library Pin
aputic8-Nov-07 5:43
aputic8-Nov-07 5:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.