1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fix Windows doc in juce_File.h

This commit is contained in:
Noah Dayan 2017-12-11 09:54:38 +00:00
parent 5dc10feeac
commit 737c82fcfc

View file

@ -875,7 +875,7 @@ public:
/** In a plugin, this will return the path of the host executable. */
hostApplicationPath,
#if JUCE_WINDOWS
#if JUCE_WINDOWS || DOXYGEN
/** On a Windows machine, returns the location of the Windows/System32 folder. */
windowsSystemDirectory,
#endif
@ -886,7 +886,7 @@ public:
*/
globalApplicationsDirectory,
#if JUCE_WINDOWS
#if JUCE_WINDOWS || DOXYGEN
/** On a Windows machine, returns the directory in which 32 bit applications
normally get installed. On a 64 bit machine this would be something like
"C:\Program Files (x86)", whereas for 32 bit machines this would match
@ -989,7 +989,7 @@ public:
*/
File getLinkedTarget() const;
#if JUCE_WINDOWS
#if JUCE_WINDOWS || DOXYGEN
/** Windows ONLY - Creates a win32 .LNK shortcut file that links to this file. */
bool createShortcut (const String& description, const File& linkFileToCreate) const;