~ubuntu-branches/ubuntu/karmic/likewise-open/karmic

« back to all changes in this revision

Viewing changes to domainjoin/libdomainjoin/include/djdaemonmgr.h

  • Committer: Bazaar Package Importer
  • Author(s): Rick Clark
  • Date: 2008-08-27 08:56:20 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080827085620-5q0f58b9qtog9myq
Tags: 4.1.0.2956-0ubuntu1
* missing-likewise-logo.diff: removed
* fixed copyright notice
* updated Standards-Version to 3.8.0
* removed path from command in prerm
* removed stop in S runlevel

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
void
31
31
DJGetDaemonStatus(
32
 
    PSTR pszDaemonPath,
 
32
    PCSTR pszDaemonPath,
33
33
    PBOOLEAN pbStarted,
34
34
    LWException **exc
35
35
    );
36
36
 
37
37
void
38
38
DJManageDaemon(
39
 
    PSTR pszName,
 
39
    PCSTR pszName,
40
40
    BOOLEAN bStart,
41
41
    PSTR pszPreCommand,
42
42
    PSTR pszStartPriority,
53
53
 
54
54
void
55
55
DJStartStopDaemon(
56
 
    PSTR pszDaemonPath,
 
56
    PCSTR pszDaemonName,
57
57
    BOOLEAN bStatus,
58
58
    PSTR pszPreCommand,
59
59
    LWException **exc
65
65
 
66
66
extern const JoinModule DJDaemonStartModule;
67
67
 
 
68
extern struct _DaemonList
 
69
{
 
70
    PCSTR primaryName;
 
71
    PCSTR alternativeName;
 
72
    BOOLEAN required;
 
73
    int startPriority;
 
74
    int stopPriority;
 
75
} daemonList[];
 
76
 
68
77
#endif // __DJDAEMONMGR_H__