Logo white

杜方 / CYTAndroid4.0

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • CYTAndroid4.0
  • src
  • com
  • synjones
  • bluetooth
  • DecodeWlt.java
  • 标准版本 1.扩展设备8 2.修复统计弹框在设备不支持时弹出
    c05c7a9b
    黄灿宏 authored
    2023-11-13 09:11:51 +0800  
    Browse Code »
DecodeWlt.java 272 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.synjones.bluetooth;
public class DecodeWlt
{
  static
  {
    try
    {
      System.loadLibrary("DecodeWlt");
    } catch (UnsatisfiedLinkError e) {
      e.printStackTrace();
    }
  }

  public native int Wlt2Bmp(String paramString1, String paramString2);
}