home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / cmd / wincom / dllcom / public / dllutil.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  1.9 KB  |  49 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. #ifndef __ComDllUtility_H
  20. #define __ComDllUtility_H
  21.  
  22. // Useful utility functions. DLL_StringFromGUID returns
  23. // an ANSI string that the caller must use CoTaskMemFree
  24. // to free the memory
  25. #define DLL_StringFromCLSID DLL_StringFromGUID
  26. #define DLL_StringFromIID DLL_StringFromGUID
  27. LPSTR DLL_StringFromGUID(REFGUID rGuid);
  28.  
  29. // Converts an OLE string (UNICODE) to an ANSI string. The caller
  30. // must use CoTaskMemFree to free the memory
  31. LPSTR AllocTaskAnsiString(LPOLESTR lpszString);
  32.  
  33. //  Required function, not implemented anywhere in the library,
  34. //      and is your responsiblilty as the end consumer to
  35. //      implement.
  36. //  Create a CComDll derived class, and return the base pointer.
  37. //  Manage all state data in the derived class that is needed to
  38. //      track an instance of a DLL being used by a specific TASK.
  39. CComDll *DLL_ConsumerCreateInstance(void);
  40.  
  41. #ifdef DLL_WIN16
  42. //  The following are WIN32 COM Dll optional, but the functionality
  43. //      is badly needed on WIN16, so support it for installation
  44. //      consistancy and ease.
  45. STDAPI DllRegisterServer(void);
  46. STDAPI DllUnregisterServer(void);
  47. #endif
  48.  
  49. #endif // __ComDllUtility_H