diff options
Diffstat (limited to 'include/stick10_commands.h')
| -rw-r--r-- | include/stick10_commands.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/include/stick10_commands.h b/include/stick10_commands.h index 8d37dbd..3d9e234 100644 --- a/include/stick10_commands.h +++ b/include/stick10_commands.h @@ -1,5 +1,6 @@  #ifndef STICK10_COMMANDS_H  #define STICK10_COMMANDS_H +  #include <bitset>  #include <iomanip>  #include <string> @@ -8,9 +9,13 @@  #include "command.h"  #include "device_proto.h" +#pragma pack (push,1) +  namespace nitrokey {  namespace proto { + +  /*   *	Stick10 protocol definition   */ @@ -844,8 +849,11 @@ class BuildAESKey : Command<CommandID::NEW_AES_KEY> {    typedef Transaction<command_id(), struct CommandPayload, struct EmptyPayload>        CommandTransaction; +  }; +  }  }  } +#pragma pack (pop)  #endif | 
