1
0
mirror of https://github.com/samba-team/samba.git synced 2025-06-23 11:17:06 +03:00

7 Commits

Author SHA1 Message Date
Stefan Metzmacher
183c379fe5 s4:lib/tevent: rename structs
list=""
list="$list event_context:tevent_context"
list="$list fd_event:tevent_fd"
list="$list timed_event:tevent_timer"

for s in $list; do
	o=`echo $s | cut -d ':' -f1`
	n=`echo $s | cut -d ':' -f2`
	r=`git grep "struct $o" |cut -d ':' -f1 |sort -u`
	files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4`
	for f in $files; do
		cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp
		mv $f.tmp $f
	done
done

metze
2008-12-29 20:46:40 +01:00
Jelmer Vernooij
495758a73e Fix COM compilation, add framework for COM python module. 2008-09-19 02:27:40 +02:00
Jelmer Vernooij
c212a65b65 More changes getting WMI code to compile, import manual marshalling. 2008-09-16 02:27:33 +02:00
Jelmer Vernooij
df06b36b46 Cope with includes.h splitup in COM code. 2008-09-15 17:39:41 +02:00
Jelmer Vernooij
701b856c52 Fix COM headers. 2008-09-15 17:37:08 +02:00
Jelmer Vernooij
ea98ddb8a1 Manual prototypes for COM. 2008-09-15 17:37:07 +02:00
Jelmer Vernooij
d106cb2ee5 Reimport COM and DCOM libraries. 2008-09-15 17:36:46 +02:00