mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-02 08:35:06 -04:00
aa1c0ba9f8
* libalpm api changes - move from a _getinfo(p, WHAT_WE_WANT) scheme to a typesafe _get_what_we_want(p) scheme [not 100% complete yet] * some const correctness changes * removal of PM_* types in alpm.h in favor of the pm*_t types used throughout libalpm
24 lines
683 B
OpenEdge ABL
24 lines
683 B
OpenEdge ABL
#if defined(SWIGPERL)
|
|
%module "Alpm::Core"
|
|
#else
|
|
%module alpm
|
|
#endif
|
|
%include "cpointer.i"
|
|
|
|
/* Wrap a class interface around a "long *" */
|
|
%pointer_class(long, longp);
|
|
|
|
/* Create casting functions */
|
|
|
|
%pointer_cast(void *, long *, void_to_long);
|
|
%pointer_cast(void *, char *, void_to_char);
|
|
%pointer_cast(void *, unsigned long, void_to_unsigned_long);
|
|
%pointer_cast(void *, pmlist_t *, void_to_pmlist);
|
|
%pointer_cast(void *, pmpkg_t *, void_to_pmpkg);
|
|
%pointer_cast(void *, pmgrp_t *, void_to_pmgrp);
|
|
%pointer_cast(void *, pmsyncpkg_t *, void_to_pmsyncpkg);
|
|
%pointer_cast(void *, pmdb_t *, void_to_pmdb);
|
|
%pointer_cast(void *, pmconflict_t *, void_to_pmconflict);
|
|
|
|
%include "alpm.h"
|