diff options
author | Jay Mundrawala <jdmundrawala@gmail.com> | 2015-03-04 15:21:42 -0800 |
---|---|---|
committer | Jay Mundrawala <jdmundrawala@gmail.com> | 2015-03-20 14:38:01 -0700 |
commit | 91ee693cb88ab3144acd4878049b5d69f19ac190 (patch) | |
tree | 7192bb0652fba456fcbfb0f0ee8d96d9155a3661 /lib/chef | |
parent | bf1690709e532c10a534db544e264b0fd047a5f8 (diff) | |
download | chef-91ee693cb88ab3144acd4878049b5d69f19ac190.tar.gz |
Add parameter types for DPAPI
Diffstat (limited to 'lib/chef')
-rw-r--r-- | lib/chef/win32/api.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/chef/win32/api.rb b/lib/chef/win32/api.rb index 8b81947c9b..efa632f454 100644 --- a/lib/chef/win32/api.rb +++ b/lib/chef/win32/api.rb @@ -184,6 +184,8 @@ class Chef host.typedef :pointer, :PSTR # Pointer to a null-terminated string of 8-bit Windows (ANSI) characters. For more information, see Character Sets Used By Fonts. host.typedef :pointer, :PTBYTE # Pointer to a TBYTE. host.typedef :pointer, :PTCHAR # Pointer to a TCHAR. + host.typedef :pointer, :PCRYPTPROTECT_PROMPTSTRUCT # Pointer to a CRYPTOPROTECT_PROMPTSTRUCT. + host.typedef :pointer, :PDATA_BLOB # Pointer to a DATA_BLOB. host.typedef :pointer, :PTSTR # A PWSTR if UNICODE is defined, a PSTR otherwise. host.typedef :pointer, :PUCHAR # Pointer to a UCHAR. host.typedef :pointer, :PUHALF_PTR # Pointer to a UHALF_PTR. |