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.
24 lines
481 B
24 lines
481 B
/***********************************************************************
|
|
// ConfDir.h
|
|
//
|
|
// Conferencing directory functions
|
|
//
|
|
// Chris Pirich (chrispi) : Created 9-7-95
|
|
*/
|
|
|
|
#ifndef _CONFDIR_H_
|
|
#define _CONFDIR_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
UINT GetConferencingDir(LPTSTR szDir, int cBufSize);
|
|
UINT GetFavoritesDir(LPTSTR szDir, int cBufSize);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* _CONFDIR_H_ */
|