home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / cmd / winfe / confhook.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  2.0 KB  |  69 lines

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2.  *
  3.  * The contents of this file are subject to the Netscape Public License
  4.  * Version 1.0 (the "NPL"); you may not use this file except in
  5.  * compliance with the NPL.  You may obtain a copy of the NPL at
  6.  * http://www.mozilla.org/NPL/
  7.  *
  8.  * Software distributed under the NPL is distributed on an "AS IS" basis,
  9.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  10.  * for the specific language governing rights and limitations under the
  11.  * NPL.
  12.  *
  13.  * The Initial Developer of this code under the NPL is Netscape
  14.  * Communications Corporation.  Portions created by Netscape are
  15.  * Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  16.  * Reserved.
  17.  */
  18.  
  19. //
  20. // This is a header file for the confhook.cpp file. 
  21. // Written by: Rich Pizzarro (rhp)
  22. //
  23.  
  24. #ifndef _CONFHOOK
  25. #define _CONFHOOK
  26.  
  27.  
  28. //
  29. // Defines needed for registry key names...
  30. //
  31. #define IDS_CONFAPP_FULLPATHNAME    "FullPathName"
  32. #define IDS_CONFAPP_NOBANNER        "BannerSuppressionFlag"
  33. #define IDS_CONFAPP_MIMEFILE        "MIMEFileFlag"
  34. #define IDS_CONFAPP_DIRECTIP        "DirectIPFlag"
  35. #define IDS_CONFAPP_EMAIL            "EmailCallFlag"
  36. #define IDS_CONFAPP_SERVER            "QueryServerFlag"
  37. #define IDS_CONFAPP_USERNAME        "UserNameFlag"
  38.  
  39. //
  40. // This routine will launch the conferencing endpoint define to the
  41. // machine.
  42. //
  43. // Arguments:
  44. //      commandLine: This is the command line to pass into the
  45. //                   conferencing application. 
  46. //
  47. //
  48. void
  49. LaunchConfEndpoint(char *commandLine, HWND parentWnd = NULL);
  50.  
  51. //
  52. // This routine is specific to looking up values in the new ConfApp 
  53. // registry/ini file section.
  54. //
  55. CString 
  56. FEU_GetConfAppProfileString(const CString &queryString);
  57.  
  58.  
  59. //
  60. // This function is needed to see if a conferencing endpoint
  61. // is defined on the machine. Return true if there is or false
  62. // if it doesn't exist.
  63. //
  64. BOOL
  65. FEU_IsConfAppAvailable(void);
  66.  
  67.  
  68. #endif    // _CONFHOOK
  69.