Leaked source code of windows server 2003
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.

42 lines
1.1 KiB

  1. /*==========================================================================
  2. *
  3. * Copyright (C) 1998 Microsoft Corporation. All Rights Reserved.
  4. *
  5. * File: createin.h
  6. * Content: defines functions required by the generic class factory
  7. *
  8. *
  9. * The generic class factory (classfac.c) requires these functions to be
  10. * implemented by the COM object(s) its supposed to be generating
  11. *
  12. * GP_ stands for "General Purpose"
  13. *
  14. * History:
  15. * Date By Reason
  16. * ==== == ======
  17. * 10/13/98 jwo Created it.
  18. * 7/19/99 rodtoll Modified for use in directxvoice
  19. * 08/23/2000 rodtoll DllCanUnloadNow always returning TRUE!
  20. * 10/05/2000 rodtoll Bug #46541 - DPVOICE: A/V linking to dpvoice.lib could cause application to fail init and crash
  21. ***************************************************************************/
  22. #ifndef __CREATEINS__
  23. #define __CREATEINS__
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. extern LONG DecrementObjectCount();
  28. extern LONG IncrementObjectCount();
  29. extern volatile LONG g_lNumObjects;
  30. extern LONG g_lNumLocks;
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif