Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
797 B

  1. #ifndef __PASSWORDFUNCTIONS_H__
  2. #define __PASSWORDFUNCTIONS_H__
  3. /*---------------------------------------------------------------------------
  4. File: PwdFuncs.h
  5. Comments: Contains general password migration helper functions.
  6. REVISION LOG ENTRY
  7. Revision By: Paul Thompson
  8. Revised on 11/08/00
  9. ---------------------------------------------------------------------------
  10. */
  11. _bstr_t EnumLocalDrives();
  12. void StoreDataToFloppy(LPCWSTR sPath, _variant_t & varData);
  13. _variant_t GetDataFromFloppy(LPCWSTR sPath);
  14. char* GetBinaryArrayFromVariant(_variant_t varData);
  15. _variant_t SetVariantWithBinaryArray(char * aData, DWORD dwArray);
  16. DWORD GetVariantArraySize(_variant_t & varData);
  17. void PrintVariant(const _variant_t & varData);
  18. #endif //__PASSWORDFUNCTIONS_H__