Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « xpidl2cs « tools « Mono.WebBrowser « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 259d17039d7cf8863d1587b922d1ed7250a9d18a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
2008-10-14  Andreia Gaita  <avidigal@novell.com>

	* xpidl2cs.pl: add option parsing. add support for choosing a specific
	interface to process inside an idl which defines several interfaces

2008-09-23  Andreia Gaita <avidigal@novell.com> 

	* xpidl2cs.pl: whitespace clean up

2008-09-23  Andreia Gaita <avidigal@novell.com> 

	* xpidl2cs.pl: fix parameter duplication. Add more type conversions

2008-09-22  Andreia Gaita <avidigal@novell.com> 

	* xpidl2cs.pl: fix infinite loop for generate_dependents, conflict 
	between global variable $file and local one. Add some more prints
	for debugging purposes.

2008-06-10  Andreia Gaita <avidigal@novell.com> 

	* xpidl2cs.pl: Added generate_class_implementation, to output a class
	  stub with the proper return values for each method definition. Fix
	  generation of interfaces with no PreserveSigAttribute

2008-06-09  Andreia Gaita <avidigal@novell.com> 

	* xpidl2cs.pl: Add more type conversions. Add support for
	  out-parameter-as-return-value signature type (doesn't add the
	  PreserveSigAttribute)

2008-06-02  Andreia Gaita <avidigal@novell.com> 

	* xpidl2cs.pl: Add mapping: nsIIDPtr[] to IntPtr, nsCID and nsCIDPtr to
	  Guid. Add support for mapping array types

2008-04-18  Andreia Gaita <avidigal@novell.com> 

	* xpidl2cs.pl: Fix parsing for non-scriptable interfaces

2008-03-02  Andreia Gaita <avidigal@novell.com> 

	* xpidl2cs.pl: More type conversion. Fix const vs [const, array] detection.

2008-02-28  Andreia Gaita  <avidigal@novell.com>

	* xpidlcs.pl: Add overrideable names (for renaming parameters that
	clash with c# keywords). Turn DOMTimeStamp to int for now.

2008-01-29  Andreia Gaita  <avidigal@novell.com>

	* xpidl2cs.pl: Add support for arrays in parameters

2008-01-24  Andreia Gaita  <avidigal@novell.com>

	* xpidl2cs.pl: Add support for different marshalling depending
	on whether a parameter is in or out. Add special case for
	generic interface returns. Only output parent is it's not 
	the base parent. Output helper class to proxy objects.

	* Makefile: added. regenerates interfaces

2008-01-03  Andreia Gaita  <avidigal@novell.com>

	* xpidl2cs.pl: Add more type conversions, don't output return
	parameters if method returns void, tweak parent interface parsing

2008-01-02  Andreia Gaita  <avidigal@novell.com>

	* xpidl2cs.pl: Add support for getting idls from other paths, fix
	script name bug.

2007-12-28  Andreia Gaita  <avidigal@novell.com>

	* xpidl2cs.pl: Generates c# interfaces from xpcom (mozilla) 
	idl files.
	From a given idl file, generates the corresponding cs file,
	and recursively generates all the parents up to nsISupports. 
	Also generates all related interfaces that are used on methods 
	and properties.