home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c031 / 8.ddi / MFC / SAMPLES / DLLTRACE / TRACEAPI.H$ / traceapi
Encoding:
Text File  |  1992-01-15  |  819 b   |  32 lines

  1. /* traceapi.h: Defines TRACER.DLL application interface
  2. // This interface can be included by C or C++ code
  3. //
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and Microsoft
  10. // QuickHelp documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13. */
  14.  
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif  /* __cplusplus */
  18.  
  19. struct TracerData
  20. {
  21.     BOOL    bEnabled;
  22.     UINT    flags;
  23. };
  24.  
  25. BOOL FAR PASCAL _export PromptTraceFlags(TracerData FAR* lpData);
  26.  
  27. BOOL FAR PASCAL _export FilterDllMsg(LPMSG lpMsg);
  28.  
  29. #ifdef __cplusplus
  30. }
  31. #endif
  32.