X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Ftransformations.h;fp=src%2Fdata%2Ftransformations.h;h=5e1488323b1936808f46496843fdfcd5c7ac3a45;hb=cbda9ae91c77f34e9591d980d5202fd7d376ac12;hp=013bcaa731e8e29adedaad8eb04d75b46e3e37e4;hpb=06a010087d0a5ad4d8a95a2ad5172d5046aa7bb4;p=pspp diff --git a/src/data/transformations.h b/src/data/transformations.h index 013bcaa731..5e1488323b 100644 --- a/src/data/transformations.h +++ b/src/data/transformations.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2006, 2009, 2011 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2006, 2009, 2011, 2013 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -32,7 +32,6 @@ enum trns_result }; struct ccase; -typedef void trns_finalize_func (void *); typedef int trns_proc_func (void *, struct ccase **, casenumber); typedef bool trns_free_func (void *); @@ -44,7 +43,7 @@ bool trns_chain_destroy (struct trns_chain *); bool trns_chain_is_empty (const struct trns_chain *); -void trns_chain_append (struct trns_chain *, trns_finalize_func *, +void trns_chain_append (struct trns_chain *, trns_proc_func *, trns_free_func *, void *); size_t trns_chain_next (struct trns_chain *); enum trns_result trns_chain_execute (const struct trns_chain *,