LBPRINTF.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

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