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.

29 lines
708 B

  1. //
  2. // Microsoft Windows Media Technologies
  3. // Copyright (C) Microsoft Corporation, 1999 - 2001. All rights reserved.
  4. //
  5. // This workspace contains two projects -
  6. // 1. ProgHelp which implements the Progress Interface
  7. // 2. The Sample application WmdmApp.
  8. //
  9. // ProgHelp.dll needs to be registered first for the SampleApp to run.
  10. //
  11. // Properties.h
  12. //
  13. #ifndef _PROPETIES_H_
  14. #define _PROPETIES_H_
  15. struct SType_String
  16. {
  17. DWORD dwType;
  18. char* pszString;
  19. };
  20. INT_PTR CALLBACK DeviceProp_DlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam);
  21. INT_PTR CALLBACK StorageProp_DlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam);
  22. #endif // _PROPETIES_H_