mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
winradio: fix ineffective packed attribute
This commit is contained in:
parent
3d93b8ccbb
commit
eb8fc66675
3 changed files with 3 additions and 3 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue