mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
16 lines
515 B
C
16 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__ */
|