mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
17 lines
515 B
C
17 lines
515 B
C
|
|
||
|
#ifndef __WINE_DISPATCHER_H__
|
||
|
#define __WINE_DISPATCHER_H__
|
||
|
|
||
|
/* Functions from dispatcher.c used elsewhere in the code */
|
||
|
SECURITY_STATUS fork_helper(PNegoHelper *new_helper, const char *prog,
|
||
|
char* const argv[]) DECLSPEC_HIDDEN;
|
||
|
|
||
|
SECURITY_STATUS run_helper(PNegoHelper helper, char *buffer,
|
||
|
unsigned int max_buflen, int *buflen) DECLSPEC_HIDDEN;
|
||
|
|
||
|
void cleanup_helper(PNegoHelper helper) DECLSPEC_HIDDEN;
|
||
|
|
||
|
void check_version(PNegoHelper helper) DECLSPEC_HIDDEN;
|
||
|
|
||
|
#endif /* __WINE_DISPATCHER_H__ */
|