mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 06:32:56 +00:00
Create a branch for header work.
svn path=/branches/header-work/; revision=45691
This commit is contained in:
parent
14fe274b1c
commit
9ea495ba33
19538 changed files with 0 additions and 1063950 deletions
36
include/psdk/lmat.h
Normal file
36
include/psdk/lmat.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
#ifndef _LMAT_H
|
||||
#define _LMAT_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#define JOB_RUN_PERIODICALLY 1
|
||||
#define JOB_EXEC_ERROR 2
|
||||
#define JOB_RUNS_TODAY 4
|
||||
#define JOB_ADD_CURRENT_DATE 8
|
||||
#define JOB_NONINTERACTIVE 16
|
||||
#define JOB_INPUT_FLAGS (JOB_RUN_PERIODICALLY|JOB_ADD_CURRENT_DATE|JOB_NONINTERACTIVE)
|
||||
#define JOB_OUTPUT_FLAGS (JOB_RUN_PERIODICALLY|JOB_EXEC_ERROR|JOB_RUNS_TODAY|JOB_NONINTERACTIVE)
|
||||
typedef struct _AT_ENUM {
|
||||
DWORD JobId;
|
||||
DWORD JobTime;
|
||||
DWORD DaysOfMonth;
|
||||
UCHAR DaysOfWeek;
|
||||
UCHAR Flags;
|
||||
LPWSTR Command;
|
||||
} AT_ENUM,*PAT_ENUM,*LPAT_ENUM;
|
||||
typedef struct _AT_INFO {
|
||||
DWORD JobTime;
|
||||
DWORD DaysOfMonth;
|
||||
UCHAR DaysOfWeek;
|
||||
UCHAR Flags;
|
||||
LPWSTR Command;
|
||||
} AT_INFO,*PAT_INFO,*LPAT_INFO;
|
||||
NET_API_STATUS WINAPI NetScheduleJobAdd(LPWSTR,PBYTE,LPDWORD);
|
||||
NET_API_STATUS WINAPI NetScheduleJobDel(LPWSTR,DWORD,DWORD);
|
||||
NET_API_STATUS WINAPI NetScheduleJobEnum(LPWSTR,PBYTE*,DWORD,PDWORD,PDWORD,PDWORD);
|
||||
NET_API_STATUS WINAPI NetScheduleJobGetInfo(LPWSTR,DWORD,PBYTE*);
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue