mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-31 15:12:55 -08: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"
|
|
|