home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 20.ddi / MFC / SAMPLES / DLLTRACE / TRACEAPI.H_ / TRACEAPI.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  877 b   |  33 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 and/or WinHelp 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. void FAR PASCAL _export ProcessDllIdle();
  29.  
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33.