Source code of Windows XP (NT5)
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.

47 lines
1.0 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1997.
  5. //
  6. // File: data.h
  7. //
  8. // Contents: Defines storage class that maintains data for snap-in nodes.
  9. //
  10. // Classes:
  11. //
  12. // Functions: SetStringData
  13. //
  14. // History: 5-27-1997 stevebl Created
  15. //
  16. //---------------------------------------------------------------------------
  17. #ifndef _DATA_H_
  18. #define _DATA_H_
  19. #define _NEW_
  20. #include <map>
  21. typedef enum DEPLOYMENT_TYPES
  22. {
  23. DT_ASSIGNED = 0,
  24. DT_PUBLISHED
  25. } DEPLOYMENT_TYPE;
  26. typedef struct tagAPP_DATA
  27. {
  28. CString szName;
  29. DEPLOYMENT_TYPE type;
  30. CString szType;
  31. CString szPath;
  32. CString szIconPath;
  33. CString szLoc;
  34. CString szMach;
  35. CString szDesc;
  36. PACKAGEDETAIL *pDetails;
  37. long itemID;
  38. BOOL fBlockDeletion;
  39. } APP_DATA;
  40. long SetStringData(APP_DATA * pData);
  41. #endif // _DATA_H_