Message54262
| Author |
bob.ippolito |
| Recipients |
| Date |
2004年10月06日.01:59:40 |
| SpamBayes Score |
| Marked as misclassified |
| Message-id |
| In-reply-to |
| Content |
Logged In: YES
user_id=139309
I would definitely have an immediate use for 3 byte integers.. the Mach-
O executable format has a couple fields that are 3 byte unsigned
integers (bit flags). py2app's supporting library macholib reads and
writes this format directly. Currently I have several places that look
like this:
class dylib_reference(Structure):
_fields_ = (
# XXX - ick, fix
('isym_flags', p_ulong),
#('isym', p_ubyte * 3),
#('flags', p_ubyte),
) |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2007年08月23日 16:08:25 | admin | link | issue1023290 messages |
| 2007年08月23日 16:08:25 | admin | create |
|