Advertisement
boris4

what with constructor?

Jan 27th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. struct  ucKey {
  2.     uint32      keySize;              
  3.     uint32      reserved;
  4.     ubyte       key[20];
  5.  
  6.     ucKey() {
  7.         memset(this, 0, sizeof(*this));
  8.     }
  9. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement