IE.h
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // IE.h : main header file for the IE DLL
  2. //
  3. #if !defined(AFX_IE_H__C74B90DB_8540_41BB_B437_CF46C9713B81__INCLUDED_)
  4. #define AFX_IE_H__C74B90DB_8540_41BB_B437_CF46C9713B81__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #ifndef __AFXWIN_H__
  9. #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11. #include "resource.h" // main symbols
  12. extern "C" __declspec( dllexport ) bool ScrollBar( HWND hWnd );
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CIEApp
  15. // See IE.cpp for the implementation of this class
  16. //
  17. class CIEApp : public CWinApp
  18. {
  19. union DWORD_TO_INT64
  20. {
  21. struct
  22. {
  23. int l;
  24. int w;
  25. };
  26. __int64  wl;
  27. };
  28. public:
  29. CIEApp( );
  30. static __int64 MakeInt64( int wParam , int lParam )
  31. {
  32. DWORD_TO_INT64 di;
  33. di.w = wParam;
  34. di.l = lParam;
  35. return di.wl;
  36. }
  37. //{{AFX_VIRTUAL(CIEApp)
  38. //}}AFX_VIRTUAL
  39. //{{AFX_MSG(CIEApp)
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. private:
  43. };
  44. /////////////////////////////////////////////////////////////////////////////
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_IE_H__C74B90DB_8540_41BB_B437_CF46C9713B81__INCLUDED_)