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.

27 lines
891 B

  1. #define CCH_OPTION_STRING (MAX_PATH + 1)
  2. extern void SaveOptions(void);
  3. extern void GetOptions(void);
  4. extern void CleanupOptions(void);
  5. extern BOOL OptionsDlgProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
  6. DWORD RegGetLong(HKEY hKey, LPTSTR szName, ULONG * plData);
  7. DWORD RegGetBinary(HKEY hKey, LPTSTR szName, LPBYTE * ppData, ULONG * lpcbData);
  8. DWORD RegSaveLong(HKEY hKey, LPTSTR szName, ULONG lData);
  9. DWORD RegSaveBinary(HKEY hKey, LPTSTR szName, LPBYTE pData, ULONG cbData);
  10. extern TCHAR szSenderEmail[];
  11. extern TCHAR szSenderName[];
  12. extern SBinary SenderEntryID;
  13. extern TCHAR szRecipientEmail[];
  14. extern TCHAR szRecipientName[];
  15. extern SBinary RecipientEntryID;
  16. extern TCHAR szOutputFile[];
  17. extern TCHAR szInputFile[];
  18. extern CRYPT_HASH_BLOB SignHash;
  19. extern DWORD CMyNames;
  20. extern PCERT_NAME_BLOB RgMyNames;