CSINPUT.CPP
上传用户:zhang8947
上传日期:2007-01-08
资源大小:1910k
文件大小:1k
源码类别:

多国语言处理

开发平台:

Visual C++

  1. //输入法管理模块
  2. #include "stdafx.h"
  3. //HINSTANCE hCsInput ; //标识该DLL
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. int FAR PASCAL LibMain( HINSTANCE hInst , WORD wDataSeg ,
  8.  WORD wHeapSize , LPSTR lpszCmdLine ) ;
  9. //int FAR PASCAL WEP(int) ;
  10. int FAR PASCAL LibMain( HINSTANCE hInst , WORD wDataSeg ,
  11.  WORD wHeapSize , LPSTR lpszCmdLine )
  12. {
  13. // hCsInput =hInst ;
  14. return 1 ;
  15. }
  16. /*
  17. int FAR PASCAL WEP(int)
  18. {  
  19. return 1;
  20. }
  21. */
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. /*
  26. class CPublic: public CWinApp
  27. {
  28. public:
  29. virtual BOOL InitInstance(); // Initialization
  30. virtual int ExitInstance();  // Termination (WEP-like code)
  31. // nothing special for the constructor
  32. CPublic(const char* pszAppName)
  33. : CWinApp(pszAppName)
  34. { }
  35. };
  36. BOOL CPublic::InitInstance()
  37. {
  38. return TRUE;
  39. }
  40. int CPublic::ExitInstance()
  41. {
  42. // any DLL termination goes here (WEP-like code)
  43. return CWinApp::ExitInstance();
  44. }
  45. CPublic  NEAR OPublic("public.dll");
  46. */