32 строки
493 B
C
32 строки
493 B
C
// vim: set filetype=c :
|
|
//
|
|
// delegates.h:
|
|
//
|
|
// Authors:
|
|
// Rolf Bjarne Kvinge <rolf@xamarin.com>
|
|
//
|
|
// Copyright 2013-2014 Xamarin Inc.
|
|
//
|
|
<#@ include file="delegates.t4" #>
|
|
|
|
#ifndef __DELAGATES_H__
|
|
#define __DELAGATES_H__
|
|
|
|
#include "xamarin/xamarin.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
<# foreach (var d in delegates) { #>
|
|
<#= d.CReturnType #>
|
|
<#= d.EntryPoint #> (<#= d.CArgumentSignature #>);
|
|
|
|
<# } #>
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* __DELAGATES_H__ */
|