#pragma pack(push,bitmap_data,1)?

what does

#pragma pack(push,bitmap_data,1)


#pragma pack(pop,bitmap_data)

mean or do please?
I don't know exactly...It could be like the assembly push reg32,
pop reg32 instructions...

push:pushes an element onto the top of the hardware stack
pop:pops an element from the top of the hardware stack

for example:

push eax ;places the value of the eax register on the stack
pop ebx ;takes the value from the stack an puts it into ebx

;(this is equivalent to mov ebx,eax)

It could be the same story with the #pragma pack directive...But the 'stack' is a 'pack' there...
Topic archived. No new replies allowed.