赞 | 0 |
VIP | 12 |
好人卡 | 0 |
积分 | 1 |
经验 | 1105 |
最后登录 | 2012-10-5 |
在线时间 | 24 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 24 小时
- 注册时间
- 2011-10-6
- 帖子
- 17
|
本帖最后由 木下优子 于 2011-11-6 18:26 编辑
帮顶 —^— 咱也想知道 个人提供1VIP悬赏赞助。 表示我只是来解读LZ签名的。
当你破解这个条码的时候,恭喜
但其实这毫无意义,只是一张签名图罢了
by 英顺的马甲 于是右侧真的解读出了脚本么 - - b 求脚本用途?module MsgBox
B_O = 0
B_OC = 1
B_ARI = 2
B_YN = 4
C_O = 1
C_C = 2
C_A = 3
C_R = 4
C_I = 5
C_Y = 6
C_N = 7
CP_ACP = 0
CP_UTF8 = 65001
def self.u2s(text)
m2w = Win32API.new('kernel32', 'MultiByteToWideChar', 'ilpipi', 'i')
w2m = Win32API.new('kernel32', 'WideCharToMultiByte', 'ilpipipp', 'i')
len = m2w.call(CP_UTF8, 0, text, -1, nil, 0);
buf = "\0" * (len*2)
m2w.call(CP_UTF8, 0, text, -1, buf, buf.size/2);
len = w2m.call(CP_ACP, 0, buf, -1, nil, 0, nil, nil);
ret = "\0" * len
w2m.call(CP_ACP, 0, buf, -1, ret, ret.size, nil, nil);
return ret.delete!("\000")
end
def self.show(msg="",title="",button=0)
msgbox = Win32API.new('user32','MessageBox',['L', 'P', 'P', 'L'],'I')
r, rs = msgbox.call(0, self.u2s(msg), self.u2s(title), button)
return r
end
end |
|