home *** CD-ROM | disk | FTP | other *** search
/ NEXT Generation 27 / NEXT27.iso / pc / demos / emperor / dx3.exe / SDK / SAMPLES / MISC / LBPRINTF.H < prev    next >
C/C++ Source or Header  |  1996-08-28  |  704b  |  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.