English 中文(简体)
Struct 字节对齐问题 XCode 4.3
原标题:Struct Byte Alignment Issue XCode 4.3

我试图使用 strutct 来绘制 BitMap 文件的地图页头。 编辑器似乎正在对齐 4 byte (32bit), 但我需要 2Byte 。 我试图通过以下的遵守指令来更改它 。

#pragma pack(2)

__attribute__ ((aligned(xx)));

those two doesn t seem to have any effect. Is there another way to do this? I m using XCode 4.3 on Mac OS X Lion. I Tested both Apple LLVM 和 Apple GCC compliers.

这里是斯特鲁茨类型定义

typedef struct {
    int16_t bfType; 
    int32_t bfSize;
    int16_t bfReserved1;
    int16_t bfReserved2;
    int32_t bfOffBits;
    int32_t biSize;
    int32_t biWidth;
    int32_t biHeight;
    int16_t biPlanes;
    int16_t biBitCount;
    int32_t biComression;
    int32_t biSizeImage;
    int32_t biXPelsPerMeter;
    int32_t biYPelsPerMeter;
    int32_t biClrUsed;
    int32_t biClrImportant;
} THeader;
最佳回答

记住,背面的长袍可能在别的地方被翻了?

#include <inttypes.h>
#include <stddef.h>

#pragma pack(push,2)

typedef struct {
int16_t bfType; 
int32_t bfSize;
int16_t bfReserved1;
int16_t bfReserved2;
int32_t bfOffBits;
int32_t biSize;
int32_t biWidth;
int32_t biHeight;
int16_t biPlanes;
int16_t biBitCount;
int32_t biComression;
int32_t biSizeImage;
int32_t biXPelsPerMeter;
int32_t biYPelsPerMeter;
int32_t biClrUsed;
int32_t biClrImportant;
} THeader;

#pragma pack(pop)

#include <stdio.h>

int main(void)
{
printf("%lu
", offsetof(THeader, bfType));
printf("%lu
", offsetof(THeader, bfSize));
printf("%lu
", offsetof(THeader, bfReserved1));
printf("%lu
", offsetof(THeader, bfReserved2));
return 0;
}


$ clang -o pack pack.c
$ ./pack
0
2
6
8
问题回答

暂无回答




相关问题
How to change out-of-focus text selection color in Xcode?

Okay, I ll bite. I ve got really pleasant code/window colors set up in Xcode. Ordinarily, my selection color is very visible. When I am doing a project search and iterating through the results, ...

Iphone NSTimer Issue

Hi I am new to objective c. I am trying to make an app for iphone. I have a button on my view, and the click on which the function playSound is called. This is working properly. It does plays the ...

Include a .txt file in a .h in C++?

I have a number of places where I need to re-use some template code. Many classes need these items In a .h could I do something like: #include <xxx.txt> and place all of this code in the ....

Iterating over string/strlen with umlauted characters

This is a follow-up to my previous question . I succeeded in implementing the algorithm for checking umlauted characters. The next problem comes from iterating over all characters in a string. I do ...

Xcode open two editor windows with same file

Is it possible to open the same file in two separate windows in Xcode. I can open a file in one window and the same file in the main Xcode editor window, but I wanted two separate fulltime editor ...

Forcing code signing refresh in Xcode

In our environment, we share resources across multiple projects and platforms. When building for iPhone, only a subset of those resources are needed. Since that subset is still considerable, we have ...

热门标签