mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
12 lines
177 B
OpenEdge ABL
12 lines
177 B
OpenEdge ABL
/* File : example.i */
|
|
%module(directors="1") example
|
|
%{
|
|
#include "example.h"
|
|
%}
|
|
|
|
/* turn on director wrapping Callback */
|
|
%feature("director") Callback;
|
|
|
|
%include "example.h"
|
|
|