Blame view

src/com/synjones/bluetooth/DecodeWlt.java 272 Bytes
c05c7a9b   黄灿宏   标准版本 1.扩展设备8 2....
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);
  }