annotate win32/lmerrlog.d @ 1:4a9dcbd9e54f

-files of 0.13 beta -fixes so that it now compiles with the current dmd version
author marton@basel.hu
date Tue, 05 Apr 2011 20:44:01 +0200
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
1 /***********************************************************************\
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
2 * lmerrlog.d *
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
3 * *
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
4 * Windows API header module *
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
5 * *
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
6 * Translated from MinGW Windows headers *
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
7 * *
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
8 * Placed into public domain *
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
9 \***********************************************************************/
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
10 module win32.lmerrlog;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
11
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
12 // COMMENT: This appears to be only for Win16. All functions are deprecated.
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
13
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
14 private import win32.lmcons, win32.windef;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
15 private import win32.lmaudit; // for LPHLOG
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
16
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
17 const ERRLOG_BASE=3100;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
18 const ERRLOG2_BASE=5700;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
19 const LOGFLAGS_FORWARD=0;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
20 const LOGFLAGS_BACKWARD=1;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
21 const LOGFLAGS_SEEK=2;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
22 const NELOG_Internal_Error=ERRLOG_BASE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
23 const NELOG_Resource_Shortage=(ERRLOG_BASE+1);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
24 const NELOG_Unable_To_Lock_Segment=(ERRLOG_BASE+2);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
25 const NELOG_Unable_To_Unlock_Segment=(ERRLOG_BASE+3);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
26 const NELOG_Uninstall_Service=(ERRLOG_BASE+4);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
27 const NELOG_Init_Exec_Fail=(ERRLOG_BASE+5);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
28 const NELOG_Ncb_Error=(ERRLOG_BASE+6);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
29 const NELOG_Net_Not_Started=(ERRLOG_BASE+7);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
30 const NELOG_Ioctl_Error=(ERRLOG_BASE+8);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
31 const NELOG_System_Semaphore=(ERRLOG_BASE+9);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
32 const NELOG_Init_OpenCreate_Err=(ERRLOG_BASE+10);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
33 const NELOG_NetBios=(ERRLOG_BASE+11);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
34 const NELOG_SMB_Illegal=(ERRLOG_BASE+12);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
35 const NELOG_Service_Fail=(ERRLOG_BASE+13);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
36 const NELOG_Entries_Lost=(ERRLOG_BASE+14);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
37 const NELOG_Init_Seg_Overflow=(ERRLOG_BASE+20);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
38 const NELOG_Srv_No_Mem_Grow=(ERRLOG_BASE+21);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
39 const NELOG_Access_File_Bad=(ERRLOG_BASE+22);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
40 const NELOG_Srvnet_Not_Started=(ERRLOG_BASE+23);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
41 const NELOG_Init_Chardev_Err=(ERRLOG_BASE+24);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
42 const NELOG_Remote_API=(ERRLOG_BASE+25);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
43 const NELOG_Ncb_TooManyErr=(ERRLOG_BASE+26);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
44 const NELOG_Mailslot_err=(ERRLOG_BASE+27);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
45 const NELOG_ReleaseMem_Alert=(ERRLOG_BASE+28);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
46 const NELOG_AT_cannot_write=(ERRLOG_BASE+29);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
47 const NELOG_Cant_Make_Msg_File=(ERRLOG_BASE+30);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
48 const NELOG_Exec_Netservr_NoMem=(ERRLOG_BASE+31);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
49 const NELOG_Server_Lock_Failure=(ERRLOG_BASE+32);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
50 const NELOG_Msg_Shutdown=(ERRLOG_BASE+40);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
51 const NELOG_Msg_Sem_Shutdown=(ERRLOG_BASE+41);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
52 const NELOG_Msg_Log_Err=(ERRLOG_BASE+50);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
53 const NELOG_VIO_POPUP_ERR=(ERRLOG_BASE+51);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
54 const NELOG_Msg_Unexpected_SMB_Type=(ERRLOG_BASE+52);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
55 const NELOG_Wksta_Infoseg=(ERRLOG_BASE+60);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
56 const NELOG_Wksta_Compname=(ERRLOG_BASE+61);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
57 const NELOG_Wksta_BiosThreadFailure=(ERRLOG_BASE+62);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
58 const NELOG_Wksta_IniSeg=(ERRLOG_BASE+63);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
59 const NELOG_Wksta_HostTab_Full=(ERRLOG_BASE+64);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
60 const NELOG_Wksta_Bad_Mailslot_SMB=(ERRLOG_BASE+65);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
61 const NELOG_Wksta_UASInit=(ERRLOG_BASE+66);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
62 const NELOG_Wksta_SSIRelogon=(ERRLOG_BASE+67);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
63 const NELOG_Build_Name=(ERRLOG_BASE+70);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
64 const NELOG_Name_Expansion=(ERRLOG_BASE+71);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
65 const NELOG_Message_Send=(ERRLOG_BASE+72);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
66 const NELOG_Mail_Slt_Err=(ERRLOG_BASE+73);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
67 const NELOG_AT_cannot_read=(ERRLOG_BASE+74);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
68 const NELOG_AT_sched_err=(ERRLOG_BASE+75);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
69 const NELOG_AT_schedule_file_created=(ERRLOG_BASE+76);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
70 const NELOG_Srvnet_NB_Open=(ERRLOG_BASE+77);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
71 const NELOG_AT_Exec_Err=(ERRLOG_BASE+78);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
72 const NELOG_Lazy_Write_Err=(ERRLOG_BASE+80);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
73 const NELOG_HotFix=(ERRLOG_BASE+81);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
74 const NELOG_HardErr_From_Server=(ERRLOG_BASE+82);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
75 const NELOG_LocalSecFail1=(ERRLOG_BASE+83);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
76 const NELOG_LocalSecFail2=(ERRLOG_BASE+84);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
77 const NELOG_LocalSecFail3=(ERRLOG_BASE+85);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
78 const NELOG_LocalSecGeneralFail=(ERRLOG_BASE+86);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
79 const NELOG_NetWkSta_Internal_Error=(ERRLOG_BASE+90);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
80 const NELOG_NetWkSta_No_Resource=(ERRLOG_BASE+91);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
81 const NELOG_NetWkSta_SMB_Err=(ERRLOG_BASE+92);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
82 const NELOG_NetWkSta_VC_Err=(ERRLOG_BASE+93);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
83 const NELOG_NetWkSta_Stuck_VC_Err=(ERRLOG_BASE+94);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
84 const NELOG_NetWkSta_NCB_Err=(ERRLOG_BASE+95);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
85 const NELOG_NetWkSta_Write_Behind_Err=(ERRLOG_BASE+96);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
86 const NELOG_NetWkSta_Reset_Err=(ERRLOG_BASE+97);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
87 const NELOG_NetWkSta_Too_Many=(ERRLOG_BASE+98);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
88 const NELOG_Srv_Thread_Failure=(ERRLOG_BASE+104);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
89 const NELOG_Srv_Close_Failure=(ERRLOG_BASE+105);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
90 const NELOG_ReplUserCurDir=(ERRLOG_BASE+106);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
91 const NELOG_ReplCannotMasterDir=(ERRLOG_BASE+107);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
92 const NELOG_ReplUpdateError=(ERRLOG_BASE+108);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
93 const NELOG_ReplLostMaster=(ERRLOG_BASE+109);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
94 const NELOG_NetlogonAuthDCFail=(ERRLOG_BASE+110);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
95 const NELOG_ReplLogonFailed=(ERRLOG_BASE+111);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
96 const NELOG_ReplNetErr=(ERRLOG_BASE+112);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
97 const NELOG_ReplMaxFiles=(ERRLOG_BASE+113);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
98 const NELOG_ReplMaxTreeDepth=(ERRLOG_BASE+114);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
99 const NELOG_ReplBadMsg=(ERRLOG_BASE+115);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
100 const NELOG_ReplSysErr=(ERRLOG_BASE+116);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
101 const NELOG_ReplUserLoged=(ERRLOG_BASE+117);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
102 const NELOG_ReplBadImport=(ERRLOG_BASE+118);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
103 const NELOG_ReplBadExport=(ERRLOG_BASE+119);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
104 const NELOG_ReplSignalFileErr=(ERRLOG_BASE+120);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
105 const NELOG_DiskFT=(ERRLOG_BASE+121);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
106 const NELOG_ReplAccessDenied=(ERRLOG_BASE+122);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
107 const NELOG_NetlogonFailedPrimary=(ERRLOG_BASE+123);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
108 const NELOG_NetlogonPasswdSetFailed=(ERRLOG_BASE+124);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
109 const NELOG_NetlogonTrackingError=(ERRLOG_BASE+125);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
110 const NELOG_NetlogonSyncError=(ERRLOG_BASE+126);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
111 const NELOG_UPS_PowerOut=(ERRLOG_BASE+130);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
112 const NELOG_UPS_Shutdown=(ERRLOG_BASE+131);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
113 const NELOG_UPS_CmdFileError=(ERRLOG_BASE+132);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
114 const NELOG_UPS_CannotOpenDriver=(ERRLOG_BASE+133);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
115 const NELOG_UPS_PowerBack=(ERRLOG_BASE+134);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
116 const NELOG_UPS_CmdFileConfig=(ERRLOG_BASE+135);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
117 const NELOG_UPS_CmdFileExec=(ERRLOG_BASE+136);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
118 const NELOG_Missing_Parameter=(ERRLOG_BASE+150);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
119 const NELOG_Invalid_Config_Line=(ERRLOG_BASE+151);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
120 const NELOG_Invalid_Config_File=(ERRLOG_BASE+152);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
121 const NELOG_File_Changed=(ERRLOG_BASE+153);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
122 const NELOG_Files_Dont_Fit=(ERRLOG_BASE+154);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
123 const NELOG_Wrong_DLL_Version=(ERRLOG_BASE+155);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
124 const NELOG_Error_in_DLL=(ERRLOG_BASE+156);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
125 const NELOG_System_Error=(ERRLOG_BASE+157);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
126 const NELOG_FT_ErrLog_Too_Large=(ERRLOG_BASE+158);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
127 const NELOG_FT_Update_In_Progress=(ERRLOG_BASE+159);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
128 const NELOG_OEM_Code=(ERRLOG_BASE+199);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
129 const NELOG_NetlogonSSIInitError=ERRLOG2_BASE;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
130 const NELOG_NetlogonFailedToUpdateTrustList=(ERRLOG2_BASE+1);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
131 const NELOG_NetlogonFailedToAddRpcInterface=(ERRLOG2_BASE+2);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
132 const NELOG_NetlogonFailedToReadMailslot=(ERRLOG2_BASE+3);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
133 const NELOG_NetlogonFailedToRegisterSC=(ERRLOG2_BASE+4);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
134 const NELOG_NetlogonChangeLogCorrupt=(ERRLOG2_BASE+5);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
135 const NELOG_NetlogonFailedToCreateShare=(ERRLOG2_BASE+6);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
136 const NELOG_NetlogonDownLevelLogonFailed=(ERRLOG2_BASE+7);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
137 const NELOG_NetlogonDownLevelLogoffFailed=(ERRLOG2_BASE+8);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
138 const NELOG_NetlogonNTLogonFailed=(ERRLOG2_BASE+9);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
139 const NELOG_NetlogonNTLogoffFailed=(ERRLOG2_BASE+10);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
140 const NELOG_NetlogonPartialSyncCallSuccess=(ERRLOG2_BASE+11);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
141 const NELOG_NetlogonPartialSyncCallFailed=(ERRLOG2_BASE+12);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
142 const NELOG_NetlogonFullSyncCallSuccess=(ERRLOG2_BASE+13);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
143 const NELOG_NetlogonFullSyncCallFailed=(ERRLOG2_BASE+14);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
144 const NELOG_NetlogonPartialSyncSuccess=(ERRLOG2_BASE+15);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
145 const NELOG_NetlogonPartialSyncFailed=(ERRLOG2_BASE+16);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
146 const NELOG_NetlogonFullSyncSuccess=(ERRLOG2_BASE+17);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
147 const NELOG_NetlogonFullSyncFailed=(ERRLOG2_BASE+18);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
148 const NELOG_NetlogonAuthNoDomainController=(ERRLOG2_BASE+19);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
149 const NELOG_NetlogonAuthNoTrustLsaSecret=(ERRLOG2_BASE+20);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
150 const NELOG_NetlogonAuthNoTrustSamAccount=(ERRLOG2_BASE+21);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
151 const NELOG_NetlogonServerAuthFailed=(ERRLOG2_BASE+22);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
152 const NELOG_NetlogonServerAuthNoTrustSamAccount=(ERRLOG2_BASE+23);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
153 const NELOG_FailedToRegisterSC=(ERRLOG2_BASE+24);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
154 const NELOG_FailedToSetServiceStatus=(ERRLOG2_BASE+25);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
155 const NELOG_FailedToGetComputerName=(ERRLOG2_BASE+26);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
156 const NELOG_DriverNotLoaded=(ERRLOG2_BASE+27);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
157 const NELOG_NoTranportLoaded=(ERRLOG2_BASE+28);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
158 const NELOG_NetlogonFailedDomainDelta=(ERRLOG2_BASE+29);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
159 const NELOG_NetlogonFailedGlobalGroupDelta=(ERRLOG2_BASE+30);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
160 const NELOG_NetlogonFailedLocalGroupDelta=(ERRLOG2_BASE+31);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
161 const NELOG_NetlogonFailedUserDelta=(ERRLOG2_BASE+32);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
162 const NELOG_NetlogonFailedPolicyDelta=(ERRLOG2_BASE+33);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
163 const NELOG_NetlogonFailedTrustedDomainDelta=(ERRLOG2_BASE+34);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
164 const NELOG_NetlogonFailedAccountDelta=(ERRLOG2_BASE+35);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
165 const NELOG_NetlogonFailedSecretDelta=(ERRLOG2_BASE+36);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
166 const NELOG_NetlogonSystemError=(ERRLOG2_BASE+37);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
167 const NELOG_NetlogonDuplicateMachineAccounts=(ERRLOG2_BASE+38);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
168 const NELOG_NetlogonTooManyGlobalGroups=(ERRLOG2_BASE+39);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
169 const NELOG_NetlogonBrowserDriver=(ERRLOG2_BASE+40);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
170 const NELOG_NetlogonAddNameFailure=(ERRLOG2_BASE+41);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
171 const NELOG_RplMessages=(ERRLOG2_BASE+42);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
172 const NELOG_RplXnsBoot=(ERRLOG2_BASE+43);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
173 const NELOG_RplSystem=(ERRLOG2_BASE+44);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
174 const NELOG_RplWkstaTimeout=(ERRLOG2_BASE+45);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
175 const NELOG_RplWkstaFileOpen=(ERRLOG2_BASE+46);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
176 const NELOG_RplWkstaFileRead=(ERRLOG2_BASE+47);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
177 const NELOG_RplWkstaMemory=(ERRLOG2_BASE+48);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
178 const NELOG_RplWkstaFileChecksum=(ERRLOG2_BASE+49);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
179 const NELOG_RplWkstaFileLineCount=(ERRLOG2_BASE+50);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
180 const NELOG_RplWkstaBbcFile=(ERRLOG2_BASE+51);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
181 const NELOG_RplWkstaFileSize=(ERRLOG2_BASE+52);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
182 const NELOG_RplWkstaInternal=(ERRLOG2_BASE+53);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
183 const NELOG_RplWkstaWrongVersion=(ERRLOG2_BASE+54);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
184 const NELOG_RplWkstaNetwork=(ERRLOG2_BASE+55);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
185 const NELOG_RplAdapterResource=(ERRLOG2_BASE+56);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
186 const NELOG_RplFileCopy=(ERRLOG2_BASE+57);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
187 const NELOG_RplFileDelete=(ERRLOG2_BASE+58);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
188 const NELOG_RplFilePerms=(ERRLOG2_BASE+59);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
189 const NELOG_RplCheckConfigs=(ERRLOG2_BASE+60);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
190 const NELOG_RplCreateProfiles=(ERRLOG2_BASE+61);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
191 const NELOG_RplRegistry=(ERRLOG2_BASE+62);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
192 const NELOG_RplReplaceRPLDISK=(ERRLOG2_BASE+63);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
193 const NELOG_RplCheckSecurity=(ERRLOG2_BASE+64);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
194 const NELOG_RplBackupDatabase=(ERRLOG2_BASE+65);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
195 const NELOG_RplInitDatabase=(ERRLOG2_BASE+66);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
196 const NELOG_RplRestoreDatabaseFailure=(ERRLOG2_BASE+67);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
197 const NELOG_RplRestoreDatabaseSuccess=(ERRLOG2_BASE+68);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
198 const NELOG_RplInitRestoredDatabase=(ERRLOG2_BASE+69);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
199 const NELOG_NetlogonSessionTypeWrong=(ERRLOG2_BASE+70);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
200
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
201 struct ERROR_LOG {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
202 DWORD el_len;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
203 DWORD el_reserved;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
204 DWORD el_time;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
205 DWORD el_error;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
206 LPWSTR el_name;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
207 LPWSTR el_text;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
208 LPBYTE el_data;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
209 DWORD el_data_size;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
210 DWORD el_nstrings;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
211 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
212 alias ERROR_LOG* PERROR_LOG, LPERROR_LOG;
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
213
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
214 extern (Windows) {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
215 deprecated {
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
216 NET_API_STATUS NetErrorLogClear(LPCWSTR, LPCWSTR, LPBYTE);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
217 NET_API_STATUS NetErrorLogRead(LPCWSTR, LPWSTR, LPHLOG, DWORD,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
218 LPDWORD, DWORD, DWORD, LPBYTE*, DWORD, LPDWORD, LPDWORD);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
219 NET_API_STATUS NetErrorLogWrite(LPBYTE, DWORD, LPCWSTR, LPBYTE,
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
220 DWORD, LPBYTE, DWORD, LPBYTE);
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
221 }
4a9dcbd9e54f -files of 0.13 beta
marton@basel.hu
parents:
diff changeset
222 }