ITK Function Reference
(V10000.1.0.60_20160308.00)
Main Page
Related Pages
Modules
Data Structures
Files
File List
Globals
pom
pom
pom_user_authentication.h
Go to the documentation of this file.
1
/*==============================================================================
2
Copyright (c) 2003-2005 UGS Corporation
3
Unpublished - All Rights Reserved
4
==============================================================================*/
5
218
/* */
219
220
#ifndef POM_USER_AUTHENTICATION_H_INCLUDED
221
#define POM_USER_AUTHENTICATION_H_INCLUDED
222
223
#include <pom/pom/libpom_exports.h>
224
231
typedef
void (*
POM_user_authentication_fn_t
)(
232
const
char
* user,
233
const
char
* password,
234
const
char
* key
235
);
236
237
#ifdef __cplusplus
238
extern
"C"
{
239
#endif
240
241
POMAPI
void
POM_set_user_authentication_fn
(
242
POM_user_authentication_fn_t
user_exit,
243
void
* user_data
244
);
245
246
POMAPI
void
POM_user_authentication_cb
(
247
const
char
* secret,
248
logical
status
249
);
250
251
POMAPI
void
POM_user_auth_set_error
(
252
int
error
253
);
254
255
POMAPI
void
*
POM_ask_user_authentication_data
(
void
);
256
257
POMAPI
logical
POM_has_user_authentication_fn
(
void
);
258
259
POMAPI
logical
POM_user_authentication_invoke
(
260
const
char
* user,
261
const
char
* password
262
);
263
264
POMAPI
logical
POM_user_auth_default_checker
(
265
const
char
* user,
266
const
char
* password
267
);
268
269
POMAPI
int
POM_user_auth_ask_error
(
void
);
270
273
#ifdef __cplusplus
274
}
275
#endif
276
277
#include <pom/pom/libpom_undef.h>
278
279
#endif
280