Skip to content

Commit 8fc9bde

Browse files
committed
ISSUE-CELLSGO-203: Optimit function map.
1 parent 363f977 commit 8fc9bde

File tree

64 files changed

+18056
-19202
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+18056
-19202
lines changed

CellsFunctionMap.h

Lines changed: 404 additions & 1550 deletions
Large diffs are not rendered by default.

aspose_cells.go

Lines changed: 2241 additions & 2241 deletions
Large diffs are not rendered by default.

aspose_cells_charts.go

Lines changed: 690 additions & 690 deletions
Large diffs are not rendered by default.

aspose_cells_charts_linux.go

Lines changed: 690 additions & 690 deletions
Large diffs are not rendered by default.

aspose_cells_datamodels.go

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func (instance *DataModel) IsNull() (bool, error) {
4848
// DataModelRelationshipCollection
4949
func (instance *DataModel) GetRelationships() (*DataModelRelationshipCollection, error) {
5050

51-
CGoReturnPtr := C.CellsGoFunctoinZBGK(C.CString("DataModel_GetRelationships"), instance.ptr)
51+
CGoReturnPtr := C.CellsGoFunctoinZZZI(C.CString("DataModel_GetRelationships"), instance.ptr)
5252
if CGoReturnPtr.error_no != 0 {
5353
err := errors.New(C.GoString(CGoReturnPtr.error_message))
5454
return nil, err
@@ -64,7 +64,7 @@ func (instance *DataModel) GetRelationships() (*DataModelRelationshipCollection
6464
// DataModelTableCollection
6565
func (instance *DataModel) GetTables() (*DataModelTableCollection, error) {
6666

67-
CGoReturnPtr := C.CellsGoFunctoinZBGL(C.CString("DataModel_GetTables"), instance.ptr)
67+
CGoReturnPtr := C.CellsGoFunctoinZZZI(C.CString("DataModel_GetTables"), instance.ptr)
6868
if CGoReturnPtr.error_no != 0 {
6969
err := errors.New(C.GoString(CGoReturnPtr.error_message))
7070
return nil, err
@@ -111,7 +111,7 @@ func (instance *DataModelRelationship) IsNull() (bool, error) {
111111
// string
112112
func (instance *DataModelRelationship) GetForeignKeyTable() (string, error) {
113113

114-
CGoReturnPtr := C.CellsGoFunctoinZZZO(C.CString("DataModelRelationship_GetForeignKeyTable"), instance.ptr)
114+
CGoReturnPtr := C.CellsGoFunctoinZZZL(C.CString("DataModelRelationship_GetForeignKeyTable"), instance.ptr)
115115
if CGoReturnPtr.error_no != 0 {
116116
err := errors.New(C.GoString(CGoReturnPtr.error_message))
117117
return "", err
@@ -125,7 +125,7 @@ func (instance *DataModelRelationship) GetForeignKeyTable() (string, error) {
125125
// string
126126
func (instance *DataModelRelationship) GetPrimaryKeyTable() (string, error) {
127127

128-
CGoReturnPtr := C.CellsGoFunctoinZZZO(C.CString("DataModelRelationship_GetPrimaryKeyTable"), instance.ptr)
128+
CGoReturnPtr := C.CellsGoFunctoinZZZL(C.CString("DataModelRelationship_GetPrimaryKeyTable"), instance.ptr)
129129
if CGoReturnPtr.error_no != 0 {
130130
err := errors.New(C.GoString(CGoReturnPtr.error_message))
131131
return "", err
@@ -139,7 +139,7 @@ func (instance *DataModelRelationship) GetPrimaryKeyTable() (string, error) {
139139
// string
140140
func (instance *DataModelRelationship) GetForeignKeyColumn() (string, error) {
141141

142-
CGoReturnPtr := C.CellsGoFunctoinZZZO(C.CString("DataModelRelationship_GetForeignKeyColumn"), instance.ptr)
142+
CGoReturnPtr := C.CellsGoFunctoinZZZL(C.CString("DataModelRelationship_GetForeignKeyColumn"), instance.ptr)
143143
if CGoReturnPtr.error_no != 0 {
144144
err := errors.New(C.GoString(CGoReturnPtr.error_message))
145145
return "", err
@@ -153,7 +153,7 @@ func (instance *DataModelRelationship) GetForeignKeyColumn() (string, error)
153153
// string
154154
func (instance *DataModelRelationship) GetPrimaryKeyColumn() (string, error) {
155155

156-
CGoReturnPtr := C.CellsGoFunctoinZZZO(C.CString("DataModelRelationship_GetPrimaryKeyColumn"), instance.ptr)
156+
CGoReturnPtr := C.CellsGoFunctoinZZZL(C.CString("DataModelRelationship_GetPrimaryKeyColumn"), instance.ptr)
157157
if CGoReturnPtr.error_no != 0 {
158158
err := errors.New(C.GoString(CGoReturnPtr.error_message))
159159
return "", err
@@ -200,7 +200,7 @@ func (instance *DataModelRelationshipCollection) IsNull() (bool, error) {
200200
// DataModelRelationship
201201
func (instance *DataModelRelationshipCollection) Get(index int32) (*DataModelRelationship, error) {
202202

203-
CGoReturnPtr := C.CellsGoFunctoinZBGM(C.CString("DataModelRelationshipCollection_Get"), instance.ptr, C.int(index))
203+
CGoReturnPtr := C.CellsGoFunctoinZZAG(C.CString("DataModelRelationshipCollection_Get"), instance.ptr, C.int(index))
204204
if CGoReturnPtr.error_no != 0 {
205205
err := errors.New(C.GoString(CGoReturnPtr.error_message))
206206
return nil, err
@@ -260,7 +260,7 @@ func (instance *DataModelTable) IsNull() (bool, error) {
260260
// string
261261
func (instance *DataModelTable) GetId() (string, error) {
262262

263-
CGoReturnPtr := C.CellsGoFunctoinZZZO(C.CString("DataModelTable_GetId"), instance.ptr)
263+
CGoReturnPtr := C.CellsGoFunctoinZZZL(C.CString("DataModelTable_GetId"), instance.ptr)
264264
if CGoReturnPtr.error_no != 0 {
265265
err := errors.New(C.GoString(CGoReturnPtr.error_message))
266266
return "", err
@@ -274,7 +274,7 @@ func (instance *DataModelTable) GetId() (string, error) {
274274
// string
275275
func (instance *DataModelTable) GetName() (string, error) {
276276

277-
CGoReturnPtr := C.CellsGoFunctoinZZZO(C.CString("DataModelTable_GetName"), instance.ptr)
277+
CGoReturnPtr := C.CellsGoFunctoinZZZL(C.CString("DataModelTable_GetName"), instance.ptr)
278278
if CGoReturnPtr.error_no != 0 {
279279
err := errors.New(C.GoString(CGoReturnPtr.error_message))
280280
return "", err
@@ -288,7 +288,7 @@ func (instance *DataModelTable) GetName() (string, error) {
288288
// string
289289
func (instance *DataModelTable) GetConnectionName() (string, error) {
290290

291-
CGoReturnPtr := C.CellsGoFunctoinZZZO(C.CString("DataModelTable_GetConnectionName"), instance.ptr)
291+
CGoReturnPtr := C.CellsGoFunctoinZZZL(C.CString("DataModelTable_GetConnectionName"), instance.ptr)
292292
if CGoReturnPtr.error_no != 0 {
293293
err := errors.New(C.GoString(CGoReturnPtr.error_message))
294294
return "", err
@@ -335,7 +335,7 @@ func (instance *DataModelTableCollection) IsNull() (bool, error) {
335335
// DataModelTable
336336
func (instance *DataModelTableCollection) Get_Int(index int32) (*DataModelTable, error) {
337337

338-
CGoReturnPtr := C.CellsGoFunctoinZBGN(C.CString("DataModelTableCollection_Get_Integer"), instance.ptr, C.int(index))
338+
CGoReturnPtr := C.CellsGoFunctoinZZAG(C.CString("DataModelTableCollection_Get_Integer"), instance.ptr, C.int(index))
339339
if CGoReturnPtr.error_no != 0 {
340340
err := errors.New(C.GoString(CGoReturnPtr.error_message))
341341
return nil, err
@@ -353,7 +353,7 @@ func (instance *DataModelTableCollection) Get_Int(index int32) (*DataModelTable
353353
// DataModelTable
354354
func (instance *DataModelTableCollection) Get_String(name string) (*DataModelTable, error) {
355355

356-
CGoReturnPtr := C.CellsGoFunctoinZBGO(C.CString("DataModelTableCollection_Get_String"), instance.ptr, C.CString(name))
356+
CGoReturnPtr := C.CellsGoFunctoinZZBU(C.CString("DataModelTableCollection_Get_String"), instance.ptr, C.CString(name))
357357
if CGoReturnPtr.error_no != 0 {
358358
err := errors.New(C.GoString(CGoReturnPtr.error_message))
359359
return nil, err

aspose_cells_datamodels_linux.go

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func (instance *DataModel) IsNull() (bool, error) {
4848
// DataModelRelationshipCollection
4949
func (instance *DataModel) GetRelationships() (*DataModelRelationshipCollection, error) {
5050

51-
CGoReturnPtr := C.CellsGoFunctoinZBGK(C.CString("DataModel_GetRelationships"), instance.ptr)
51+
CGoReturnPtr := C.CellsGoFunctoinZZZI(C.CString("DataModel_GetRelationships"), instance.ptr)
5252
if CGoReturnPtr.error_no != 0 {
5353
err := errors.New(C.GoString(CGoReturnPtr.error_message))
5454
return nil, err
@@ -64,7 +64,7 @@ func (instance *DataModel) GetRelationships() (*DataModelRelationshipCollection
6464
// DataModelTableCollection
6565
func (instance *DataModel) GetTables() (*DataModelTableCollection, error) {
6666

67-
CGoReturnPtr := C.CellsGoFunctoinZBGL(C.CString("DataModel_GetTables"), instance.ptr)
67+
CGoReturnPtr := C.CellsGoFunctoinZZZI(C.CString("DataModel_GetTables"), instance.ptr)
6868
if CGoReturnPtr.error_no != 0 {
6969
err := errors.New(C.GoString(CGoReturnPtr.error_message))
7070
return nil, err
@@ -111,7 +111,7 @@ func (instance *DataModelRelationship) IsNull() (bool, error) {
111111
// string
112112
func (instance *DataModelRelationship) GetForeignKeyTable() (string, error) {
113113

114-
CGoReturnPtr := C.CellsGoFunctoinZZZO(C.CString("DataModelRelationship_GetForeignKeyTable"), instance.ptr)
114+
CGoReturnPtr := C.CellsGoFunctoinZZZL(C.CString("DataModelRelationship_GetForeignKeyTable"), instance.ptr)
115115
if CGoReturnPtr.error_no != 0 {
116116
err := errors.New(C.GoString(CGoReturnPtr.error_message))
117117
return "", err
@@ -125,7 +125,7 @@ func (instance *DataModelRelationship) GetForeignKeyTable() (string, error) {
125125
// string
126126
func (instance *DataModelRelationship) GetPrimaryKeyTable() (string, error) {
127127

128-
CGoReturnPtr := C.CellsGoFunctoinZZZO(C.CString("DataModelRelationship_GetPrimaryKeyTable"), instance.ptr)
128+
CGoReturnPtr := C.CellsGoFunctoinZZZL(C.CString("DataModelRelationship_GetPrimaryKeyTable"), instance.ptr)
129129
if CGoReturnPtr.error_no != 0 {
130130
err := errors.New(C.GoString(CGoReturnPtr.error_message))
131131
return "", err
@@ -139,7 +139,7 @@ func (instance *DataModelRelationship) GetPrimaryKeyTable() (string, error) {
139139
// string
140140
func (instance *DataModelRelationship) GetForeignKeyColumn() (string, error) {
141141

142-
CGoReturnPtr := C.CellsGoFunctoinZZZO(C.CString("DataModelRelationship_GetForeignKeyColumn"), instance.ptr)
142+
CGoReturnPtr := C.CellsGoFunctoinZZZL(C.CString("DataModelRelationship_GetForeignKeyColumn"), instance.ptr)
143143
if CGoReturnPtr.error_no != 0 {
144144
err := errors.New(C.GoString(CGoReturnPtr.error_message))
145145
return "", err
@@ -153,7 +153,7 @@ func (instance *DataModelRelationship) GetForeignKeyColumn() (string, error)
153153
// string
154154
func (instance *DataModelRelationship) GetPrimaryKeyColumn() (string, error) {
155155

156-
CGoReturnPtr := C.CellsGoFunctoinZZZO(C.CString("DataModelRelationship_GetPrimaryKeyColumn"), instance.ptr)
156+
CGoReturnPtr := C.CellsGoFunctoinZZZL(C.CString("DataModelRelationship_GetPrimaryKeyColumn"), instance.ptr)
157157
if CGoReturnPtr.error_no != 0 {
158158
err := errors.New(C.GoString(CGoReturnPtr.error_message))
159159
return "", err
@@ -200,7 +200,7 @@ func (instance *DataModelRelationshipCollection) IsNull() (bool, error) {
200200
// DataModelRelationship
201201
func (instance *DataModelRelationshipCollection) Get(index int32) (*DataModelRelationship, error) {
202202

203-
CGoReturnPtr := C.CellsGoFunctoinZBGM(C.CString("DataModelRelationshipCollection_Get"), instance.ptr, C.int(index))
203+
CGoReturnPtr := C.CellsGoFunctoinZZAG(C.CString("DataModelRelationshipCollection_Get"), instance.ptr, C.int(index))
204204
if CGoReturnPtr.error_no != 0 {
205205
err := errors.New(C.GoString(CGoReturnPtr.error_message))
206206
return nil, err
@@ -260,7 +260,7 @@ func (instance *DataModelTable) IsNull() (bool, error) {
260260
// string
261261
func (instance *DataModelTable) GetId() (string, error) {
262262

263-
CGoReturnPtr := C.CellsGoFunctoinZZZO(C.CString("DataModelTable_GetId"), instance.ptr)
263+
CGoReturnPtr := C.CellsGoFunctoinZZZL(C.CString("DataModelTable_GetId"), instance.ptr)
264264
if CGoReturnPtr.error_no != 0 {
265265
err := errors.New(C.GoString(CGoReturnPtr.error_message))
266266
return "", err
@@ -274,7 +274,7 @@ func (instance *DataModelTable) GetId() (string, error) {
274274
// string
275275
func (instance *DataModelTable) GetName() (string, error) {
276276

277-
CGoReturnPtr := C.CellsGoFunctoinZZZO(C.CString("DataModelTable_GetName"), instance.ptr)
277+
CGoReturnPtr := C.CellsGoFunctoinZZZL(C.CString("DataModelTable_GetName"), instance.ptr)
278278
if CGoReturnPtr.error_no != 0 {
279279
err := errors.New(C.GoString(CGoReturnPtr.error_message))
280280
return "", err
@@ -288,7 +288,7 @@ func (instance *DataModelTable) GetName() (string, error) {
288288
// string
289289
func (instance *DataModelTable) GetConnectionName() (string, error) {
290290

291-
CGoReturnPtr := C.CellsGoFunctoinZZZO(C.CString("DataModelTable_GetConnectionName"), instance.ptr)
291+
CGoReturnPtr := C.CellsGoFunctoinZZZL(C.CString("DataModelTable_GetConnectionName"), instance.ptr)
292292
if CGoReturnPtr.error_no != 0 {
293293
err := errors.New(C.GoString(CGoReturnPtr.error_message))
294294
return "", err
@@ -335,7 +335,7 @@ func (instance *DataModelTableCollection) IsNull() (bool, error) {
335335
// DataModelTable
336336
func (instance *DataModelTableCollection) Get_Int(index int32) (*DataModelTable, error) {
337337

338-
CGoReturnPtr := C.CellsGoFunctoinZBGN(C.CString("DataModelTableCollection_Get_Integer"), instance.ptr, C.int(index))
338+
CGoReturnPtr := C.CellsGoFunctoinZZAG(C.CString("DataModelTableCollection_Get_Integer"), instance.ptr, C.int(index))
339339
if CGoReturnPtr.error_no != 0 {
340340
err := errors.New(C.GoString(CGoReturnPtr.error_message))
341341
return nil, err
@@ -353,7 +353,7 @@ func (instance *DataModelTableCollection) Get_Int(index int32) (*DataModelTable
353353
// DataModelTable
354354
func (instance *DataModelTableCollection) Get_String(name string) (*DataModelTable, error) {
355355

356-
CGoReturnPtr := C.CellsGoFunctoinZBGO(C.CString("DataModelTableCollection_Get_String"), instance.ptr, C.CString(name))
356+
CGoReturnPtr := C.CellsGoFunctoinZZBU(C.CString("DataModelTableCollection_Get_String"), instance.ptr, C.CString(name))
357357
if CGoReturnPtr.error_no != 0 {
358358
err := errors.New(C.GoString(CGoReturnPtr.error_message))
359359
return nil, err

0 commit comments

Comments
 (0)