-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path_MonthCalColors.inc
58 lines (46 loc) · 1.85 KB
/
_MonthCalColors.inc
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
//----------------------------------------
// ´úÂëÓÉGenlibVcl¹¤¾ß×Ô¶¯Éú³É¡£
// Copyright ? ying32. All Rights Reserved.
//
//----------------------------------------
function MonthCalColors_Create(AOwner: TCommonCalendar): TMonthCalColors; cdecl;
begin
Result := TMonthCalColors.Create(AOwner);
end;
procedure MonthCalColors_Free(AObj: TMonthCalColors); cdecl;
begin
AObj.Free;
end;
procedure MonthCalColors_Assign(AObj: TMonthCalColors; Source: TPersistent); cdecl;
begin
AObj.Assign(Source);
end;
function MonthCalColors_GetNamePath(AObj: TMonthCalColors): PWideChar; cdecl;
begin
Result := PWideChar(AObj.GetNamePath);
end;
function MonthCalColors_ClassName(AObj: TMonthCalColors): PWideChar; cdecl;
begin
Result := PWideChar(AObj.ClassName);
end;
function MonthCalColors_Equals(AObj: TMonthCalColors; Obj: TObject): LongBool; cdecl;
begin
Result := AObj.Equals(Obj);
end;
function MonthCalColors_GetHashCode(AObj: TMonthCalColors): Integer; cdecl;
begin
Result := AObj.GetHashCode;
end;
function MonthCalColors_ToString(AObj: TMonthCalColors): PWideChar; cdecl;
begin
Result := PWideChar(AObj.ToString);
end;
exports
MonthCalColors_Create {$IFNDEF MSWINDOWS}name '_MonthCalColors_Create'{$ENDIF},
MonthCalColors_Free {$IFNDEF MSWINDOWS}name '_MonthCalColors_Free'{$ENDIF},
MonthCalColors_Assign {$IFNDEF MSWINDOWS}name '_MonthCalColors_Assign'{$ENDIF},
MonthCalColors_GetNamePath {$IFNDEF MSWINDOWS}name '_MonthCalColors_GetNamePath'{$ENDIF},
MonthCalColors_ClassName {$IFNDEF MSWINDOWS}name '_MonthCalColors_ClassName'{$ENDIF},
MonthCalColors_Equals {$IFNDEF MSWINDOWS}name '_MonthCalColors_Equals'{$ENDIF},
MonthCalColors_GetHashCode {$IFNDEF MSWINDOWS}name '_MonthCalColors_GetHashCode'{$ENDIF},
MonthCalColors_ToString {$IFNDEF MSWINDOWS}name '_MonthCalColors_ToString'{$ENDIF};