-
Notifications
You must be signed in to change notification settings - Fork 0
/
nisyscfg_wide.h
367 lines (319 loc) · 16.4 KB
/
nisyscfg_wide.h
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
/*============================================================================*/
/* National Instruments / System Configuration API */
/*----------------------------------------------------------------------------*/
/* Copyright (c) National Instruments 2010-2014. All Rights Reserved. */
/*----------------------------------------------------------------------------*/
/* */
/* Title: nisyscfg_wide.h */
/* Purpose: Wide entry points for NI System Configuration API functions */
/* */
/*============================================================================*/
#ifndef ___nisysconfig_wide_h___
#define ___nisysconfig_wide_h___
#include "nisyscfg.h"
#if defined(__cplusplus) || defined(__cplusplus__)
extern "C" {
#endif
/**************************************************************************/
/* Core System Configuration functions */
/**************************************************************************/
NISYSCFGCFUNC NISysCfgInitializeSessionW(
const wchar_t * targetName,
const wchar_t * username,
const wchar_t * password,
NISysCfgLocale language,
NISysCfgBool forcePropertyRefresh,
unsigned int connectTimeoutMsec,
NISysCfgEnumExpertHandle * expertsEnumHandle,
NISysCfgSessionHandle * sessionHandle
);
NISYSCFGCFUNC NISysCfgGetSystemExpertsW(
NISysCfgSessionHandle sessionHandle,
const wchar_t * expertNames,
NISysCfgEnumExpertHandle * expertEnumHandle
);
NISYSCFGCFUNC NISysCfgFindHardwareW(
NISysCfgSessionHandle sessionHandle,
NISysCfgFilterMode filterMode,
NISysCfgFilterHandle filterHandle,
const wchar_t * expertNames,
NISysCfgEnumResourceHandle * resourceEnumHandle
);
NISYSCFGCFUNC NISysCfgFindSystemsW(
NISysCfgSessionHandle sessionHandle,
const wchar_t * deviceClass,
NISysCfgBool detectOnlineSystems,
NISysCfgIncludeCachedResults cacheMode,
NISysCfgSystemNameFormat findOutputMode,
unsigned int timeoutMsec,
NISysCfgBool onlyInstallableSystems,
NISysCfgEnumSystemHandle * systemEnumHandle
);
// Caller should free result using NISysCfgFreeDetailedStringW
NISYSCFGCFUNC NISysCfgSelfTestHardwareW(
NISysCfgResourceHandle resourceHandle,
unsigned int mode,
wchar_t ** detailedResult
);
// Caller should free result using NISysCfgFreeDetailedStringW
NISYSCFGCFUNC NISysCfgSelfCalibrateHardwareW(
NISysCfgResourceHandle resourceHandle,
wchar_t ** detailedResult
);
NISYSCFGCFUNC NISysCfgRenameResourceW(
NISysCfgResourceHandle resourceHandle,
const wchar_t * newName,
NISysCfgBool overwriteIfExists,
NISysCfgBool updateDependencies,
NISysCfgBool * nameAlreadyExisted,
NISysCfgResourceHandle * overwrittenResourceHandle
);
NISYSCFGCFUNC NISysCfgGetResourcePropertyW(
NISysCfgResourceHandle resourceHandle,
NISysCfgResourceProperty propertyID,
void * value
);
NISYSCFGCDECL NISysCfgSetResourcePropertyW(
NISysCfgResourceHandle resourceHandle,
NISysCfgResourceProperty propertyID,
...
);
NISYSCFGCDECL NISysCfgSetResourcePropertyWithTypeW(
NISysCfgResourceHandle resourceHandle,
NISysCfgResourceProperty propertyID,
NISysCfgPropertyType propertyType,
...
);
NISYSCFGCFUNC NISysCfgGetResourceIndexedPropertyW(
NISysCfgResourceHandle resourceHandle,
NISysCfgIndexedProperty propertyID,
unsigned int index,
void * value
);
// Caller should free result using NISysCfgFreeDetailedStringW
NISYSCFGCFUNC NISysCfgSaveResourceChangesW(
NISysCfgResourceHandle resourceHandle,
NISysCfgBool * changesRequireRestart,
wchar_t ** detailedResult
);
NISYSCFGCFUNC NISysCfgGetSystemPropertyW(
NISysCfgSessionHandle sessionHandle,
NISysCfgSystemProperty propertyID,
void * value
);
NISYSCFGCDECL NISysCfgSetSystemPropertyW(
NISysCfgSessionHandle sessionHandle,
NISysCfgSystemProperty propertyID,
...
);
// Caller should free result using NISysCfgFreeDetailedStringW
NISYSCFGCFUNC NISysCfgSaveSystemChangesW(
NISysCfgSessionHandle sessionHandle,
NISysCfgBool * changesRequireRestart,
wchar_t ** detailedResult
);
NISYSCFGCDECL NISysCfgSetFilterPropertyW(
NISysCfgFilterHandle filterHandle,
NISysCfgFilterProperty propertyID,
...
);
NISYSCFGCDECL NISysCfgSetFilterPropertyWithTypeW(
NISysCfgFilterHandle filterHandle,
NISysCfgFilterProperty propertyID,
NISysCfgPropertyType propertyType,
...
);
NISYSCFGCFUNC NISysCfgRestartW(
NISysCfgSessionHandle sessionHandle,
NISysCfgBool waitForRestartToFinish,
NISysCfgBool installMode,
NISysCfgBool flushDNS,
unsigned int timeoutMsec,
wchar_t newIpAddress[]
);
NISYSCFGCFUNC NISysCfgGetSystemImageAsFolderW(
NISysCfgSessionHandle sessionHandle,
NISysCfgBool autoRestart,
const wchar_t * destinationFolder,
const wchar_t * encryptionPassphrase,
unsigned int numBlacklistEntries,
const wchar_t ** blacklistFilesDirectories,
NISysCfgBool overwriteDestination,
NISysCfgBool installedSoftwareOnly
);
NISYSCFGCFUNC NISysCfgCreateSystemImageAsFolderW(
NISysCfgSessionHandle sessionHandle,
const wchar_t * imageTitle,
const wchar_t * imageID,
const wchar_t * imageVersion,
const wchar_t * imageDescription,
NISysCfgBool autoRestart,
const wchar_t * destinationFolder,
const wchar_t * encryptionPassphrase,
unsigned int numBlacklistEntries,
const wchar_t ** blacklistFilesDirectories,
NISysCfgBool overwriteIfExists
);
NISYSCFGCFUNC NISysCfgSetSystemImageFromFolderW(
NISysCfgSessionHandle sessionHandle,
NISysCfgBool autoRestart,
const wchar_t * sourceFolder,
const wchar_t * encryptionPassphrase,
unsigned int numBlacklistEntries,
const wchar_t ** blacklistFilesDirectories,
NISysCfgBool originalSystemOnly,
NISysCfgNetworkInterfaceSettings networkSettings
);
NISYSCFGCFUNC NISysCfgGetFilteredSoftwareComponentsW(
const wchar_t * repositoryPath,
const wchar_t * deviceClass,
const wchar_t * operatingSystem,
unsigned int productID,
NISysCfgIncludeComponentTypes itemTypes,
NISysCfgEnumSoftwareComponentHandle * componentEnumHandle
);
NISYSCFGCFUNC NISysCfgGetFilteredSoftwareSetsW(
const wchar_t * repositoryPath,
const wchar_t * deviceClass,
const wchar_t * operatingSystem,
unsigned int productID,
NISysCfgEnumSoftwareSetHandle * setEnumHandle
);
NISYSCFGCFUNC NISysCfgInstallUninstallComponentsW(
NISysCfgSessionHandle sessionHandle,
NISysCfgBool autoRestart,
NISysCfgBool autoSelectDependencies,
NISysCfgEnumSoftwareComponentHandle componentsToInstallHandle,
unsigned int numComponentsToUninstall,
const wchar_t ** componentIDsToUninstall,
NISysCfgEnumDependencyHandle* brokenDependencyEnumHandle
);
NISYSCFGCFUNC NISysCfgInstallSoftwareSetW(
NISysCfgSessionHandle sessionHandle,
NISysCfgBool autoRestart,
const wchar_t * softwareSetID,
const wchar_t * version,
NISysCfgEnumSoftwareComponentHandle addonsToInstallHandle,
NISysCfgEnumDependencyHandle* brokenDependencyEnumHandle
);
NISYSCFGCFUNC NISysCfgExportConfigurationW(
NISysCfgSessionHandle sessionHandle,
const wchar_t * destinationFile,
const wchar_t * expertNames,
NISysCfgBool overwriteIfExists
);
NISYSCFGCFUNC NISysCfgImportConfigurationW(
NISysCfgSessionHandle sessionHandle,
const wchar_t * sourceFile,
const wchar_t * expertNames,
NISysCfgImportMode importMode,
wchar_t ** detailedResult
);
NISYSCFGCFUNC NISysCfgGenerateMAXReportW(
NISysCfgSessionHandle sessionHandle,
const wchar_t * outputFilename,
NISysCfgReportType reportType,
NISysCfgBool overwrite
);
/**************************************************************************/
/* System Configuration firmware modification functions */
/**************************************************************************/
// Caller should free result using NISysCfgFreeDetailedStringW
NISYSCFGCFUNC NISysCfgUpgradeFirmwareFromFileW(
NISysCfgResourceHandle resourceHandle,
const wchar_t * firmwareFile,
NISysCfgBool autoStopTasks,
NISysCfgBool alwaysOverwrite,
NISysCfgBool waitForOperationToFinish,
NISysCfgFirmwareStatus * firmwareStatus,
wchar_t ** detailedResult
);
// Caller should free result using NISysCfgFreeDetailedStringW
NISYSCFGCFUNC NISysCfgUpgradeFirmwareVersionW(
NISysCfgResourceHandle resourceHandle,
const wchar_t * firmwareVersion,
NISysCfgBool autoStopTasks,
NISysCfgBool alwaysOverwrite,
NISysCfgBool waitForOperationToFinish,
NISysCfgFirmwareStatus * firmwareStatus,
wchar_t ** detailedResult
);
// Caller should free result using NISysCfgFreeDetailedStringW
NISYSCFGCFUNC NISysCfgEraseFirmwareW(
NISysCfgResourceHandle resourceHandle,
NISysCfgBool autoStopTasks,
NISysCfgFirmwareStatus * firmwareStatus,
wchar_t ** detailedResult
);
// Caller should free result using NISysCfgFreeDetailedStringW
NISYSCFGCFUNC NISysCfgCheckFirmwareStatusW(
NISysCfgResourceHandle resourceHandle,
int * percentComplete,
NISysCfgFirmwareStatus * firmwareStatus,
wchar_t ** detailedResult
);
/**************************************************************************/
/* System Configuration enumerators and utility functions */
/**************************************************************************/
NISYSCFGCFUNC NISysCfgAddComponentToEnumW(
NISysCfgEnumSoftwareComponentHandle componentsHandle,
const wchar_t * ID,
const wchar_t * version,
NISysCfgVersionSelectionMode mode
);
NISYSCFGCFUNC NISysCfgFreeDetailedStringW(
wchar_t str[]
);
NISYSCFGCFUNC NISysCfgNextSystemInfoW(
NISysCfgEnumSystemHandle systemEnumHandle,
wchar_t system[]
);
NISYSCFGCFUNC NISysCfgNextExpertInfoW(
NISysCfgEnumExpertHandle expertEnumHandle,
wchar_t expertName[],
wchar_t displayName[],
wchar_t version[]
);
// Caller should free detailedDescription using NISysCfgFreeDetailedStringW
NISYSCFGCFUNC NISysCfgNextComponentInfoW(
NISysCfgEnumSoftwareComponentHandle componentsEnumHandle,
wchar_t ID[],
wchar_t version[],
wchar_t title[],
NISysCfgComponentType * itemType,
wchar_t ** detailedDescription
);
// Caller should free detailedDescription using NISysCfgFreeDetailedStringW
NISYSCFGCFUNC NISysCfgGetSoftwareSetInfoW(
NISysCfgSoftwareSetHandle setHandle,
NISysCfgIncludeComponentTypes itemTypes,
NISysCfgBool includeAddOnDeps,
wchar_t ID[],
wchar_t version[],
wchar_t title[],
NISysCfgComponentType * setType,
wchar_t ** detailedDescription,
NISysCfgEnumSoftwareComponentHandle * addOnsHandle,
NISysCfgEnumSoftwareComponentHandle * itemsHandle
);
// Caller should free detailedDescription using NISysCfgFreeDetailedStringW
NISYSCFGCFUNC NISysCfgNextDependencyInfoW(
NISysCfgEnumDependencyHandle dependencyEnumHandle,
wchar_t dependerID[],
wchar_t dependerVersion[],
wchar_t dependerTitle[],
wchar_t ** dependerDetailedDescription,
wchar_t dependeeID[],
wchar_t dependeeVersion[],
wchar_t dependeeTitle[],
wchar_t ** dependeeDetailedDescription
);
NISYSCFGCFUNC NISysCfgGetStatusDescriptionW(
NISysCfgSessionHandle sessionHandle,
NISysCfgStatus status,
wchar_t ** detailedDescription
);
#ifdef __cplusplus
}
#endif
#endif