You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
750 B
29 lines
750 B
/*
|
|
* brfcase.h - Briefcase ADT description.
|
|
*/
|
|
|
|
|
|
/* Prototypes
|
|
*************/
|
|
|
|
/* brfcase.c */
|
|
|
|
extern BOOL SetBriefcaseModuleIniSwitches(void);
|
|
extern BOOL InitBriefcaseModule(void);
|
|
extern void ExitBriefcaseModule(void);
|
|
extern HSTRINGTABLE GetBriefcaseNameStringTable(HBRFCASE);
|
|
extern HPTRARRAY GetBriefcaseTwinFamilyPtrArray(HBRFCASE);
|
|
extern HPTRARRAY GetBriefcaseFolderPairPtrArray(HBRFCASE);
|
|
extern HPATHLIST GetBriefcasePathList(HBRFCASE);
|
|
extern HRESULT GetBriefcaseRootMoniker(HBRFCASE, PIMoniker *);
|
|
extern BOOL BeginExclusiveBriefcaseAccess(void);
|
|
extern void EndExclusiveBriefcaseAccess(void);
|
|
|
|
#ifdef DEBUG
|
|
|
|
extern BOOL BriefcaseAccessIsExclusive(void);
|
|
|
|
#endif
|
|
|
|
extern BOOL IsValidHBRFCASE(HBRFCASE);
|
|
|