home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / spy / app / wprintf.h < prev   
Text File  |  1997-10-05  |  945b  |  22 lines

  1.  
  2. /******************************************************************************\
  3. *       This is a part of the Microsoft Source Code Samples. 
  4. *       Copyright (C) 1993-1997 Microsoft Corporation.
  5. *       All rights reserved. 
  6. *       This source code is only intended as a supplement to 
  7. *       Microsoft Development Tools and/or WinHelp documentation.
  8. *       See these sources for detailed information regarding the 
  9. *       Microsoft samples programs.
  10. \******************************************************************************/
  11.  
  12. /* These functions are used to debug apps quickly */
  13. /* NOTE windows.h must be included prior to this file */
  14.  
  15. HWND APIENTRY CreatePrintfWindow (HWND,LPSTR,BOOL,INT);
  16. HWND APIENTRY CreatePrintfWin (HWND,HANDLE,LPSTR,DWORD,INT,INT,INT,INT,INT);
  17. INT FAR cdecl vwprintf(HWND hWnd, LPSTR format, va_list marker);
  18.  
  19.  
  20. #define WM_VWPRINTF (WM_USER + 123)
  21. #define WM_WPRINTF  (WM_USER + 124)
  22.