LBPRINTF.H
Upload User: bangxh
Upload Date: 2007-01-31
Package Size: 42235k
Code Size: 1k
Category:

Windows Develop

Development Platform:

Visual C++

  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. #define __LBPRINTF_INCLUDED__
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. extern void LBCreate( HWND hWnd, DWORD pos );
  15. extern void LBSize( DWORD dwWidth, DWORD dwHeight );
  16. extern void LBClear( void );
  17. extern void __cdecl LBPrintf( LPSTR fmt, ... );
  18. extern void __cdecl LBPrintfDDRC( HRESULT rc, LPSTR fmt, ... );
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22. #endif