xamarin-macios/runtime/delegates.h.t4

32 строки
493 B
Plaintext
Исходник Обычный вид История

2016-04-21 15:19:32 +03:00
// 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__ */