Skip to content

Commit 4972810

Browse files
committed
CFFI headers: enable DSSProperty functions
1 parent 7956f64 commit 4972810

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

cffi/dss_capi_cffi.h

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -237,10 +237,12 @@ void DSSimComs_BusVoltage(double** ResultPtr, int32_t* ResultCount, size_t Index
237237
// void DSSProgress_Set_Caption(char* Value);
238238
// void DSSProgress_Set_PctProgress(int32_t Value);
239239
// void DSSProgress_Show(void);
240-
// char* DSSProperty_Get_Description(void);
241-
// char* DSSProperty_Get_Name(void);
242-
// char* DSSProperty_Get_Val(void);
243-
// void DSSProperty_Set_Val(char* Value);
240+
char* DSSProperty_Get_Description(void);
241+
char* DSSProperty_Get_Name(void);
242+
char* DSSProperty_Get_Val(void);
243+
void DSSProperty_Set_Val(char* Value);
244+
void DSSProperty_Set_Name(char* Value);
245+
void DSSProperty_Set_Index(int32_t Value);
244246
char* DSS_Executive_Get_Command(int32_t i);
245247
int32_t DSS_Executive_Get_NumCommands(void);
246248
int32_t DSS_Executive_Get_NumOptions(void);

cffi/dsspm_capi_cffi.h

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,12 @@ void DSSimComs_BusVoltage(double** ResultPtr, int32_t* ResultCount, size_t Index
234234
//void DSSProgress_Set_Caption(char* Value);
235235
//void DSSProgress_Set_PctProgress(int32_t Value);
236236
//void DSSProgress_Show(void);
237-
//char* DSSProperty_Get_Description(void);
238-
//char* DSSProperty_Get_Name(void);
239-
//char* DSSProperty_Get_Val(void);
240-
//void DSSProperty_Set_Val(char* Value);
237+
char* DSSProperty_Get_Description(void);
238+
char* DSSProperty_Get_Name(void);
239+
char* DSSProperty_Get_Val(void);
240+
void DSSProperty_Set_Val(char* Value);
241+
void DSSProperty_Set_Name(char* Value);
242+
void DSSProperty_Set_Index(int32_t Value);
241243
char* DSS_Executive_Get_Command(int32_t i);
242244
int32_t DSS_Executive_Get_NumCommands(void);
243245
int32_t DSS_Executive_Get_NumOptions(void);

0 commit comments

Comments
 (0)