winradio: fix ineffective packed attribute

This commit is contained in:
Stephane Fillod 2012-06-23 16:51:13 +02:00
parent 3d93b8ccbb
commit eb8fc66675
3 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@ typedef struct {
DWORD dwRefClk1;
DWORD dwRefClk2;
BYTE IF1DAC[8];
} RADIO_INFO __attribute__((packed));
} __attribute__((packed)) RADIO_INFO;
/* #pragma pack() // set back the default packing */
/* Some type definitions needed for dll access */

View File

@ -77,7 +77,7 @@ typedef struct {
DWORD dwRefClk1;
DWORD dwRefClk2;
BYTE IF1DAC[8];
} RADIO_INFO __attribute__((packed));
} __attribute__((packed)) RADIO_INFO;
/* #pragma pack() // set back the default packing */
/* Some type definitions needed for dll access */

View File

@ -86,7 +86,7 @@ typedef struct {
DWORD dwRefClk1;
DWORD dwRefClk2;
BYTE IF1DAC[8];
} RADIO_INFO __attribute__((packed));
} __attribute__((packed)) RADIO_INFO;
/* #pragma pack() // set back the default packing */
/* Some type definitions needed for dll access */