Skip to content

Commit

Permalink
Merge pull request firebreath#88 from asinbow/patch-1
Browse files Browse the repository at this point in the history
fix crash with FOLDERID_LocalAppDataLow not found
  • Loading branch information
taxilian committed Apr 23, 2013
2 parents b044ccd + 2f53675 commit 7c55fb4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/PluginCore/Win/SystemHelpersWin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ typedef GUID KNOWNFOLDERID;

#ifndef DEFINE_KNOWN_FOLDER
#define DEFINE_KNOWN_FOLDER(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
EXTERN_C static const GUID name
EXTERN_C const GUID DECLSPEC_SELECTANY name \
= { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
DEFINE_KNOWN_FOLDER(FOLDERID_LocalAppDataLow, 0xA520A1A4, 0x1780, 0x4FF6, 0xBD, 0x18, 0x16, 0x73, 0x43, 0xC5, 0xAF, 0x16);
#undef DEFINE_KNOWN_FOLDER
#endif
Expand Down

0 comments on commit 7c55fb4

Please sign in to comment.