00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 Open Download Manager Copyright (c) 2008-2010 OpenDownloadManager.ORG 00004 */ 00005 00006 #include <windows.h> 00007 #include "vmsFirefoxUtil.h" 00008 #include "vmsFileUtil.h" 00009 00010 vmsFirefoxUtil::vmsFirefoxUtil() 00011 { 00012 00013 } 00014 00015 vmsFirefoxUtil::~vmsFirefoxUtil() 00016 { 00017 00018 } 00019 00020 void vmsFirefoxUtil::GetProfilesPath(LPSTR pszPath) 00021 { 00022 vmsFirefoxUtil::GetDataPath (pszPath); 00023 lstrcat (pszPath, "Profiles\\"); 00024 } 00025 00026 void vmsFirefoxUtil::GetDataPath(LPSTR pszPath) 00027 { 00028 vmsFileUtil::GetAppDataPath ("Mozilla", pszPath); 00029 vmsFileUtil::MakePathOK (pszPath, true); 00030 lstrcat (pszPath, "Firefox\\"); 00031 }
1.5.6