home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / directx / misc / lbprintf.h < prev    next >
C/C++ Source or Header  |  1997-07-14  |  695b  |  26 lines

  1. /*==========================================================================
  2.  *
  3.  *  Copyright (C) 1995 Microsoft Corporation. All Rights Reserved.
  4.  *
  5.  *  File:    lbprintf.h
  6.  *  Content:    list box printf header file
  7.  *
  8.  ***************************************************************************/
  9. #ifndef __LBPRINTF_INCLUDED__
  10.  
  11. #define __LBPRINTF_INCLUDED__
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. extern void LBCreate( HWND hWnd, DWORD pos );
  16. extern void LBSize( DWORD dwWidth, DWORD dwHeight );
  17. extern void LBClear( void );
  18. extern void __cdecl LBPrintf( LPSTR fmt, ... );
  19. extern void __cdecl LBPrintfDDRC( HRESULT rc, LPSTR fmt, ... );
  20.  
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24.  
  25. #endif
  26.