Advertisement
MagicAndre1981

new known folders in Windows 10

Apr 4th, 2015
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.17 KB | None | 0 0
  1. // {A52BBA46-E9E1-435f-B3D9-28DAA648C0F6}
  2. // Same as FOLDERID_SkyDrive and later we'll remove FOLDERID_SkyDrive
  3. DEFINE_KNOWN_FOLDER(FOLDERID_OneDrive,            0xa52bba46, 0xe9e1, 0x435f, 0xb3, 0xd9, 0x28, 0xda, 0xa6, 0x48, 0xc0, 0xf6);
  4.  
  5.  
  6.  
  7. // {2B20DF75-1EDA-4039-8097-38798227D5B7}
  8. DEFINE_KNOWN_FOLDER(FOLDERID_CameraRollLibrary,   0x2b20df75, 0x1eda, 0x4039, 0x80, 0x97, 0x38, 0x79, 0x82, 0x27, 0xd5, 0xb7);
  9.  
  10. // {3B193882-D3AD-4eab-965A-69829D1FB59F}
  11. DEFINE_KNOWN_FOLDER(FOLDERID_SavedPictures,       0x3b193882, 0xd3ad, 0x4eab, 0x96, 0x5a, 0x69, 0x82, 0x9d, 0x1f, 0xb5, 0x9f);
  12.  
  13. // {E25B5812-BE88-4bd9-94B0-29233477B6C3}
  14. DEFINE_KNOWN_FOLDER(FOLDERID_SavedPicturesLibrary, 0xe25b5812, 0xbe88, 0x4bd9, 0x94, 0xb0, 0x29, 0x23, 0x34, 0x77, 0xb6, 0xc3);
  15.  
  16. // {12D4C69E-24AD-4923-BE19-31321C43A767}
  17. DEFINE_KNOWN_FOLDER(FOLDERID_RetailDemo,          0x12d4c69e, 0x24ad, 0x4923, 0xbe, 0x19, 0x31, 0x32, 0x1c, 0x43, 0xa7, 0x67);
  18.  
  19. // The file system directory that contains development files that have been copied to this device by a development tool. A
  20. // typical path is C:\Users\username\AppData\Local\DevelopmentFiles. This directory is used by development tools that need
  21. // to copy files to a device. This may include copying application binaries for temporary registration and execution in order
  22. // to allow a developer to test their application without having to go through the full app packaging process. It could also
  23. // include development time only components such as a remote debugger. Recommended practice is to create sub-directories rather
  24. // than copying files to the DevelopmentFiles directory. Development tools should be careful to use a naming convention that
  25. // avoids conflicts. For example application binaries should be copied to a directory with a unique name such as the app package
  26. // full name. This information is per user and will not roam.
  27. // {DBE8E08E-3053-4BBC-B183-2A7B2B191E59}
  28. DEFINE_KNOWN_FOLDER(FOLDERID_DevelopmentFiles, 0xdbe8e08e, 0x3053, 0x4bbc, 0xb1, 0x83, 0x2a, 0x7b, 0x2b, 0x19, 0x1e, 0x59);
  29.  
  30. // {31C0DD25-9439-4F12-BF41-7FF4EDA38722}
  31. DEFINE_KNOWN_FOLDER(FOLDERID_Objects3D, 0x31c0dd25, 0x9439, 0x4f12, 0xbf, 0x41, 0x7f, 0xf4, 0xed, 0xa3, 0x87, 0x22);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement