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

多国语言处理

开发平台:

Visual C++

  1. //汉化主函数
  2. #include "stdafx.h"
  3. HINSTANCE hCsKernel ; //标识该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. hCsKernel =hInst ;
  14. return 1 ;
  15. }
  16. /*
  17. int FAR PASCAL WEP(int)
  18. {  
  19. return 1;
  20. }*/
  21. #ifdef __cplusplus
  22. }
  23. #endif