예제 #1
0
        static Symbology()
        {
            try {
                SymbolStruct = (zint_symbol)

                               // generate managed counterpart of struct
                               Marshal.PtrToStructure(ZBarcode.Create(), typeof(zint_symbol));
            }
            catch (Exception e)
            {
                // dll not found, application aborted
            }
        }
예제 #2
0
        static Symbology()
        {
            try {
                SymbolStruct = (zint_symbol)

                // generate managed counterpart of struct
                Marshal.PtrToStructure(ZBarcode.Create(), typeof(zint_symbol));
            }
            catch (Exception e)
            {
                // dll not found, application aborted
            }
        }
예제 #3
0
 public static extern int EncodeAndPrint(
  ref zint_symbol symbol,
  string input,
  int length,
  int rotate_angle);
예제 #4
0
 public static extern void Delete(ref zint_symbol symbol);
예제 #5
0
 public static extern void Clear(ref zint_symbol symbol);
예제 #6
0
 public extern static void Clear(ref zint_symbol symbol);
예제 #7
0
 public extern static void Delete(ref zint_symbol symbol);
예제 #8
0
 public extern static int EncodeAndPrint(
     ref zint_symbol symbol,
     string input,
     int length,
     int rotate_angle);