[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
回复 12# Five66

大佬能给指导一下上面tcc编译报错的问题吗? 装VS太麻烦了

TOP

试试这个32位的,替换ps1文件夹里面的dll
https://went.lanzouw.com/inU060q3dkqj

winddk命令行编译

TOP

本帖最后由 小白龙 于 2023-3-14 22:25 编辑

回复 17# went


封装的函数名怎么看?
用下面的代码执行报错
Add-Type : c:\Users\Administrator\AppData\Local\Temp\ixzwysxg\ixzwysxg.0.cs(4) : 无法识别的转义序列
c:\Users\Administrator\AppData\Local\Temp\ixzwysxg\ixzwysxg.0.cs(3) :         public static class Api{
c:\Users\Administrator\AppData\Local\Temp\ixzwysxg\ixzwysxg.0.cs(4) : >>>                 [DllImport("C:\Users\Administrator\Deskto
p\MyDll.dll")]
c:\Users\Administrator\AppData\Local\Temp\ixzwysxg\ixzwysxg.0.cs(5) :                 public static extern int h2p(String ss);
At line:9 char:1
+ Add-Type -TypeDefinition $code
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidData: (Microsoft.Power...peCompilerError:AddTypeCompilerError) [Add-Type], Exce
   ption
    + FullyQualifiedErrorId : SOURCE_CODE_ERROR,Microsoft.PowerShell.Commands.AddTypeCommand
  1. $code=@"
  2. using System;
  3. using System.Runtime.InteropServices;
  4. public static class Api{
  5. [DllImport("C:\Users\Administrator\Desktop\MyDll.dll")]
  6. public static extern int h2p(String ss);
  7.     }
  8. "@
  9. Add-Type -TypeDefinition $code
  10. [Api]::h2p("我是中国人")
复制代码

TOP

回复 17# went


    这里有个tcc编译的教程, 下载安装配置都很顺利, 就是报前面的错误, 大佬帮看一下就太感谢了,
http://www.taodudu.cc/news/show-4919115.html

TOP

isascii函数未定义,检查ctype.h文件
'\'符号需要转义,'\\'

TOP

winddk编译c&c++
mini工具包下载 支持xp
https://went.lanzouw.com/irKAW0q3gbbi

TOP

回复 16# 小白龙


    试试将isascii(c)改成 c < 0x80

TOP

本帖最后由 小白龙 于 2023-3-14 23:32 编辑

回复 21# went

多谢大佬指导,

https://www.cnblogs.com/tangxin-blog/p/5541635.html
我直接用上面的链接的C代码, 拷到PSPad中, 然后TCC编译, 一下就能生成exe, 编译速度非常快, 但是修改main函数为下面代码就报错了, 应该要改一下代码

各位大佬可以按下面的链接试一下TCC编译器, 才几百K
http://www.taodudu.cc/news/show-4919115.html
  1. extern "C" _declspec(dllexport)void h2p(const char* szChinese)
  2. {
  3.     uint32_t bufLen = 0;
  4.     char pinyinBuf[MAXBUFLEN] = { 0 };
  5.     //const char* szChinese = "中华人民共和国 People's Republic of China";
  6.     getPinyin(szChinese, pinyinBuf, MAXBUFLEN, &bufLen, enmPinyinMode_FirstUpper);
  7.     printf("%s\n", pinyinBuf);
  8. }
复制代码

TOP

本帖最后由 小白龙 于 2023-3-14 23:43 编辑

回复 22# Five66


    多谢大佬指导, 改完之后不再报错了, 也能输出了, 但是输出是错的, 我想输出 中国人  的拼音, 但是显示的拼音是 Juan?Bang

我把main改为了如下
  1. __declspec(dllexport) void h2p(const char* szChinese)
  2. {
  3.     uint32_t bufLen = 0;
  4.     char pinyinBuf[MAXBUFLEN] = { 0 };
  5.     //const char* szChinese = "中华人民共和国 People's Republic of China";
  6.     getPinyin(szChinese, pinyinBuf, MAXBUFLEN, &bufLen, enmPinyinMode_FirstUpper);
  7.     printf("%s\n", pinyinBuf);
  8.     MessageBox(0, pinyinBuf, "title", MB_TOPMOST);
  9. }
复制代码

TOP

本帖最后由 小白龙 于 2023-3-15 00:31 编辑

回复 21# went


    大佬, 下载后试了一下您的全套, 还是报错, 应该可能是64位dll原因, 我再试下32位的
Exception calling "getPinyin" with "5" argument(s): "试图加载格式不正确的程序。 (异常来自 HRESULT:0x8007000B)"
At C:\Users\Administrator\Desktop\pinyin\test.ps1:17 char:1
+ [Api]::getPinyin($src,$buf,1024,[ref]$len,2)
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: ( [], MethodInvocationException
    + FullyQualifiedErrorId : BadImageFormatException
  1. cls
  2. $code=@"
  3.     using System;
  4.     using System.Runtime.InteropServices;
  5.     public static class Api{
  6.         [DllImport("pinyin.dll")]
  7.         public static extern void getPinyin(byte[] src,byte[] buf,uint max_len,ref uint buf_len,uint mode);
  8.     }
  9. "@
  10. Add-Type -TypeDefinition $code
  11. $s = "中华人民共和国 People's Republic of China"
  12. $src=[System.Text.Encoding]::Default.GetBytes($s)
  13. $buf = New-Object 'byte[]'(1024)
  14. $len = 0
  15. [Api]::getPinyin($src,$buf,1024,[ref]$len,2)
  16. [System.Text.Encoding]::Default.GetString($buf,0,$len)
复制代码

TOP

修改pinyin.c文件第一行 再拖到bat文件上重新编译dll
x86或x64都试试

TOP

回复 26# went


    多谢大佬, 用这个 //config=x64  编译的成功了, 是不是反了? 现在生成的文件小点了

TOP

回复 26# went

您早点休息吧, 太感谢了

TOP

回复 24# 小白龙

你的"中国人"是utf8编码的,utf8编码的"中国人"前面两字节是0xe4和0xb8,执行代码 (0xe4-0xa0)*100+(0xb8-0xa0) 后是 6824 ,对应代码 case 6824(返回拼音 "JUAN")

而gbk编码的"中国人"前面两字节是0xd6和0xd0,执行代码 (0xd6-0xa0)*100+(0xd0-0xa0) 后是 5448 ,对应代码:
         if(code>=5448 && code<=5458)
         {
             return "ZHONG";
             break;
         }

TOP

睡不着弄了个能直接调用的dll(64位的dll,包含源码,只是加了个类),有兴趣的就看看吧
点击下载

TOP

返回列表