mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
fixed 64-bit cmd/arg for windows
This commit is contained in:
parent
80501bad5b
commit
9440213d6b
4 changed files with 21 additions and 13 deletions
|
@ -35,10 +35,10 @@ typedef struct {
|
|||
#define USB_CMD_DATA_SIZE 512
|
||||
|
||||
typedef struct {
|
||||
uint32_t cmd;
|
||||
uint64_t cmd;
|
||||
uint64_t arg[3];
|
||||
union {
|
||||
uint8_t asBytes[USB_CMD_DATA_SIZE];
|
||||
uint8_t asBytes[USB_CMD_DATA_SIZE];
|
||||
uint32_t asDwords[USB_CMD_DATA_SIZE/4];
|
||||
} d;
|
||||
} PACKED UsbCommand;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue