diff options
Diffstat (limited to 'plugins/AssocMgr/src/reg.h')
-rw-r--r-- | plugins/AssocMgr/src/reg.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/plugins/AssocMgr/src/reg.h b/plugins/AssocMgr/src/reg.h index e82b4376ea..6716d31e60 100644 --- a/plugins/AssocMgr/src/reg.h +++ b/plugins/AssocMgr/src/reg.h @@ -24,31 +24,31 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /* Backup to DB */
void CleanupRegTreeBackupSettings(void);
/* Class */
-BOOL AddRegClass(const char *pszClassName,const wchar_t *pszTypeDescription,const wchar_t *pszIconLoc,const wchar_t *pszAppName,const wchar_t *pszRunCmd,const wchar_t *pszDdeCmd,const wchar_t *pszDdeApp,const wchar_t *pszDdeTopic,const wchar_t *pszVerbDesc,BOOL fBrowserAutoOpen,BOOL fUrlProto,BOOL fIsShortcut);
+BOOL AddRegClass(const char *pszClassName, const wchar_t *pszTypeDescription, const wchar_t *pszIconLoc, const wchar_t *pszAppName, const wchar_t *pszRunCmd, const wchar_t *pszDdeCmd, const wchar_t *pszDdeApp, const wchar_t *pszDdeTopic, const wchar_t *pszVerbDesc, BOOL fBrowserAutoOpen, BOOL fUrlProto, BOOL fIsShortcut);
BOOL RemoveRegClass(const char *pszClassName);
-BOOL IsRegClass(const char *pszClassName,const wchar_t *pszRunCmd);
+BOOL IsRegClass(const char *pszClassName, const wchar_t *pszRunCmd);
HICON LoadRegClassSmallIcon(struct ASSOCDATA *pszClassName);
/* Extension */
-BOOL AddRegFileExt(const char *pszFileExt,const char *pszClassName,const char *pszMimeType,BOOL fIsText);
-void RemoveRegFileExt(const char *pszFileExt,const char *pszClassName);
-BOOL IsRegFileExt(const char *pszFileExt,const char *pszClassName);
+BOOL AddRegFileExt(const char *pszFileExt, const char *pszClassName, const char *pszMimeType, BOOL fIsText);
+void RemoveRegFileExt(const char *pszFileExt, const char *pszClassName);
+BOOL IsRegFileExt(const char *pszFileExt, const char *pszClassName);
/* Mime Type */
-BOOL AddRegMimeType(const char *pszMimeType,const char *pszFileExt);
-void RemoveRegMimeType(const char *pszMimeType,const char *pszFileExt);
+BOOL AddRegMimeType(const char *pszMimeType, const char *pszFileExt);
+void RemoveRegMimeType(const char *pszMimeType, const char *pszFileExt);
/* Open-With App */
-void AddRegOpenWith(const wchar_t *pszAppFileName,BOOL fAllowOpenWith,const wchar_t *pszAppName,const wchar_t *pszIconLoc,const wchar_t *pszRunCmd,const wchar_t *pszDdeCmd,const wchar_t *pszDdeApp,const wchar_t *pszDdeTopic);
+void AddRegOpenWith(const wchar_t *pszAppFileName, BOOL fAllowOpenWith, const wchar_t *pszAppName, const wchar_t *pszIconLoc, const wchar_t *pszRunCmd, const wchar_t *pszDdeCmd, const wchar_t *pszDdeApp, const wchar_t *pszDdeTopic);
void RemoveRegOpenWith(const wchar_t *pszAppFileName);
-void AddRegOpenWithExtEntry(const wchar_t *pszAppFileName,const char *pszFileExt,const wchar_t *pszFileDesc);
-void RemoveRegOpenWithExtEntry(const wchar_t *pszAppFileName,const char *pszFileExt);
+void AddRegOpenWithExtEntry(const wchar_t *pszAppFileName, const char *pszFileExt, const wchar_t *pszFileDesc);
+void RemoveRegOpenWithExtEntry(const wchar_t *pszAppFileName, const char *pszFileExt);
/* Autostart */
-BOOL AddRegRunEntry(const wchar_t *pszAppName,const wchar_t *pszRunCmd);
-BOOL RemoveRegRunEntry(const wchar_t *pszAppName,const wchar_t *pszRunCmd);
-BOOL IsRegRunEntry(const wchar_t *pszAppName,const wchar_t *pszRunCmd);
+BOOL AddRegRunEntry(const wchar_t *pszAppName, const wchar_t *pszRunCmd);
+BOOL RemoveRegRunEntry(const wchar_t *pszAppName, const wchar_t *pszRunCmd);
+BOOL IsRegRunEntry(const wchar_t *pszAppName, const wchar_t *pszRunCmd);
/* Strings */
char* MakeFileClassName(const char *pszFileExt);
char* MakeUrlClassName(const char *pszUrl);
-wchar_t* MakeRunCommand(BOOL fMirExe,BOOL fFixedDbProfile);
-wchar_t* MakeIconLocation(HMODULE hModule,WORD nIconResID);
+wchar_t* MakeRunCommand(BOOL fMirExe, BOOL fFixedDbProfile);
+wchar_t* MakeIconLocation(HMODULE hModule, WORD nIconResID);
wchar_t* MakeAppFileName(BOOL fMirExe);
|