Use be_t<u32>/<64>

This commit is contained in:
raven02 2014-05-31 06:49:19 +08:00
parent a0cc3a0fb0
commit 97561ff52b

View file

@ -111,8 +111,8 @@ struct CellPngDecOutParam
//Custom structs //Custom structs
struct CellPngDecSubHandle struct CellPngDecSubHandle
{ {
u32 fd; be_t<u32> fd;
u64 fileSize; be_t<u64> fileSize;
CellPngDecInfo info; CellPngDecInfo info;
CellPngDecOutParam outParam; CellPngDecOutParam outParam;
CellPngDecSrc src; CellPngDecSrc src;
@ -120,7 +120,7 @@ struct CellPngDecSubHandle
struct CellPngDecMainHandle struct CellPngDecMainHandle
{ {
u32 mainHandle; be_t<u32> mainHandle;
u32 threadInParam; be_t<u32> threadInParam;
u32 threadOutParam; be_t<u32> threadOutParam;
}; };