Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1880 lines
66 KiB

  1. //******************************************
  2. // Guid Definitions
  3. // 10/23/98
  4. //******************************************
  5. // The #type statement and the #typev statement may be used to convert
  6. // messages into user readable forms.
  7. // With #type all parameters are processed as strings and the default string
  8. // processing of FormTMessage is used
  9. // With #typev wherever possible parameters are processed as their native format
  10. // and the %x!x! style of FormatMessage shoulld be used.
  11. //
  12. // Note Parameter %1 through %9 are predefined
  13. // Parameter is #typev
  14. // %1 GUID Friendly Name string
  15. // %2 GUID SubType Name string
  16. // %3 Thread ID LONG
  17. // %4 System Time String
  18. // %5 Kernel Time or User Time String
  19. // %6 User Time or NULL String
  20. // %7 Instance ID String
  21. // %8 Parent Instance ID String
  22. // %9 CPU Number LONG
  23. // %10 and above are the user parameters
  24. // %255 Is reserved
  25. //
  26. // Note these parameters are always present, but may not be valid
  27. // depending on the source.
  28. //
  29. // User defined messages always start at message number 10
  30. // Messages 0 through 9 are reserved for system use.
  31. // Message number 255 is reserved.
  32. //
  33. // Available formats for user arguments are -
  34. //
  35. //Name Description #typev Format
  36. //ItemChar CHAR
  37. //ItemUChar UCHAR
  38. //ItemCharShort USHORT
  39. //ItemCharSign SHORT
  40. //ItemShort Signed Short SHORT
  41. //ItemUShort Unsigned Short USHORT
  42. //ItemLong Signed Long, decoded as decimal LONG
  43. //ItemULong Unsigned Long, decoded as decimal ULONG
  44. //ItemULongX Unsigned Long, seen as hexadecimal ULONG
  45. //ItemLongLong Signed 64 Bit value LONGLONG
  46. //ItemULongLong Unsigned 64 Bit value ULONGLONG (Not in some versions of Tracedmp)
  47. //ItemString Ascii string, null terminated String
  48. //ItemRString Reduced Ascii String String
  49. (\t, \n, \r, \,, converted to space, trailing sp removed)
  50. //ItemWString Unicode String, null terminated String
  51. //ItemPString Counted Ascii String String
  52. //ItemPWString Counted Unicode String String
  53. //ItemMLString Multi-Line Ascii String String
  54. //ItemSid Security identifier String
  55. //ItemChar4 CHAR4
  56. //ItemIPAddr IP Address String (If needed raw, use ItemUlong)
  57. // (string of form xxx.xxx.xxx.xxx)
  58. //ItemPort String (If needed raw use ItemUshort)
  59. //ItemNWString Non-null terminated Wide Char String String
  60. //ItemListByte (element1,element2,....) String
  61. // byte index into a list of strings
  62. //ItemListShort(element1,element2,....) String
  63. // short index into a list of strings
  64. //ItemListLong (element1,element2,....) String
  65. // Long index into a list of strings
  66. //ItemGUID Normal GUID format String
  67. //ItemNTerror Translates a ULONG error code to the String
  68. // NT Error Text
  69. //ItemNTSTATUS Converts NTSTATUS to symbolic name String
  70. //ItemWINERROR Converts WINERROR to symbolic name String
  71. //ItemNETEVENT Converts NETEVENT to symbolic name String
  72. //ItemMerror module.ext String
  73. // Translates a ULONG error code using the
  74. // module specified.
  75. //ItemTimeStamp Treats a LONGLONG as a timestamp String
  76. //ItemUnknown String
  77. 529ae497-0a1f-43a5-8cb5-2aa60b497831 Rdbss
  78. #typev MSG_ID_RxCommonDispatchProblem 2 "%4!s! RxCommonDispatchProblem IrpC=%10!08x! Code=%11!02x!"
  79. {
  80. RxContext, ItemUlongX // 10
  81. MajorFunction, ItemUChar // 11
  82. }
  83. #typev MSG_ID_RxFsdCommonDispatch_OF 3 "%4!s! #### Orphaned FCB op %10!08x!"
  84. {
  85. Fcb, ItemUlongX //10
  86. }
  87. #typev MSG_ID_RxInitializeContext 4 "%4!s! Irp++ %17!s!/%16!x! %10!x! irp %11!x! thrd %12!x! %13!x!:%14!x! #%15!x!"
  88. {
  89. RxContext, ItemUlongX // 10
  90. Irp, ItemUlongX // 11
  91. Thread, ItemUlongX // 12
  92. Fcb, ItemUlongX // 13
  93. Fobx, ItemUlongX // 14
  94. SerialNum, ItemUlongX // 15
  95. MinorFunction, ItemUChar // 16
  96. OperationName, ItemString // 17
  97. }
  98. #typev MSG_ID_RxCompleteRequest 5 "%4!s! Irp-- %16!s!/%15!x! %10!x! irp %11!x! iosb %12!x!,%13!x! #%14!x!"
  99. {
  100. RxContext, ItemUlongX // 10
  101. Irp, ItemUlongX // 11
  102. Status, ItemUlongX // 12
  103. Information, ItemUlongX // 13
  104. SerialNum, ItemUlongX // 14
  105. MinorFunction, ItemUChar // 15
  106. OperationName, ItemString // 16
  107. }
  108. #typev MSG_ID_RxCompleteRequest_NI 6 "%4!s! Irp00 %10!x!"
  109. {
  110. Irp, ItemUlongX //10
  111. }
  112. #typev MSG_ID_RxSynchronizeBlockingOperationsMaybeDroppingFcbLock 7 "%4!s! !!!!! RxContext %10!x! Status %11!x!"
  113. {
  114. RxContext, ItemUlongX //10
  115. Status, ItemUlongx //11
  116. }
  117. #typev MSG_ID_RxItsTheSameContext 8 "%4!s! NotSame!!!! %10!x!"
  118. {
  119. RxContext, ItemUlongX //10
  120. }
  121. #typev MSG_ID_RxRegisterChangeBufferingStateRequest_1 9 "%4!s! Req %10!x! SrvOpenKey %11!x! in Handler List"
  122. {
  123. pRequest, ItemUlongX //10
  124. pSrvOpen, ItemUlongX //11
  125. }
  126. #typev MSG_ID_RxRegisterChangeBufferingStateRequest_2 10 "%4!s! Req %10!x! SrvOpenKey %11!x! in Reg. List"
  127. {
  128. pRequest, ItemUlongX //10
  129. pSrvOpen, ItemUlongX //11
  130. }
  131. #typev MSG_ID_RxRegisterChangeBufferingStateRequest_3 11 "%4!s! !!CBSReq. %10!x! %11!x! %12!x! %13!x! %14!x!"
  132. {
  133. pSrvCall, ItemUlongX //10
  134. pSrvOpen, ItemUlongX //11
  135. SrvOpenKey, ItemUlongX //12
  136. pMRxContext, ItemUlongX //13
  137. Status, ItemUlongX //14
  138. }
  139. #typev MSG_ID_RxPrepareRequestForHandling_1 12 "%4!s! 3333 Req %10!x! SrvOpenKey %11!x! in Hndlr List"
  140. {
  141. pRequest, ItemUlongX //10
  142. SrvOpenKey, ItemUlongX //11
  143. }
  144. #typev MSG_ID_RxPrepareRequestForHandling_2 13 "%4!s! Chg. Buf. State Ignored %10!x! %11!x! C000009a"
  145. {
  146. SrvOpenKey, ItemUlongX //10
  147. pMRxContext, ItemUlongX //11
  148. }
  149. #typev MSG_ID_RxpDiscardChangeBufferingStateRequests 14 "%4!s! **** (2)Disc Req(%10!x!) SOKey(%11!x!)"
  150. {
  151. pRequest, ItemUlongX //10
  152. SrvOpenKey, ItemUlongX //11
  153. }
  154. #typev MSG_ID_RxpDispatchChangeBufferingStateRequests 15 "%4!s! ***** Activating Dispatcher %10!x!"
  155. {
  156. pSrvCall, ItemUlongX //10
  157. }
  158. #typev MSG_ID_RxpProcessChangeBufferingStateRequests_1 16 "%4!s! RPCBSR Entry SrvCall(%10!x!)"
  159. {
  160. pSrvCall, ItemUlongX //10
  161. }
  162. #typev MSG_ID_RxpProcessChangeBufferingStateRequests_2 17 "%4!s! Proc. Req. SrvOpen (%10!x!)"
  163. {
  164. pSrvOpen, ItemUlongX //10
  165. }
  166. #typev MSG_ID_RxpProcessChangeBufferingStateRequests_3 18 "%4!s! Proc. Req. SrvOpen FCB (%10!x!)"
  167. {
  168. Fcb, ItemUlongX //10
  169. }
  170. #typev MSG_ID_RxpProcessChangeBufferingStateRequests_4 19 "%4!s! SOKey(%10!x!) processed(Last Resort)"
  171. {
  172. SrvOpenKey, ItemUlongX //10
  173. }
  174. #typev MSG_ID_RxpProcessChangeBufferingStateRequests_5 20 "%4!s! RPCBSR Exit SrvCall(%10!x!)"
  175. {
  176. pSrvCall, ItemUlongX //10
  177. }
  178. #typev MSG_ID_RxLastChanceHandlerForChangeBufferingStateRequests_1 21 "%4!s! RLCHCBSR Entry SrvCall(%10!x!)"
  179. {
  180. pSrvCall, ItemUlongX //10
  181. }
  182. #typev MSG_ID_RxLastChanceHandlerForChangeBufferingStateRequests_2 22 "%4!s! SOKey(%10!x!) processed(Last Resort)"
  183. {
  184. SrvOpenKey, ItemUlongX //10
  185. }
  186. #typev MSG_ID_RxLastChanceHandlerForChangeBufferingStateRequests_3 23 "%4!s! RLCHCBSR Exit SrvCall(%10!x!)"
  187. {
  188. pSrvCall, ItemUlongX //10
  189. }
  190. #typev MSG_ID_RxProcessFcbChangeBufferingStateRequest_1 24 "%4!s! RPFcbCBSR Entry FCB(%10!x!)"
  191. {
  192. pFcb, ItemUlongX //10
  193. }
  194. #typev MSG_ID_RxProcessFcbChangeBufferingStateRequest_2 25 "%4!s! ****** SOKey(%10!x!) being processed"
  195. {
  196. SrvOpenKey, ItemUlongX //10
  197. }
  198. #typev MSG_ID_RxProcessFcbChangeBufferingStateRequest_3 26 "%4!s! ****** 123 SOKey(%10!x!) ignored"
  199. {
  200. SrvOpenKey, ItemUlongX //10
  201. }
  202. #typev MSG_ID_RxProcessFcbChangeBufferingStateRequest_4 27 "%4!s! RPFcbCBSR Exit FCB(%10!x!)"
  203. {
  204. pFcb, ItemUlongX //10
  205. }
  206. #typev MSG_ID_RxChangeBufferingState_1 28 "%4!s! ChangeBufferState %10!x! %11!x!"
  207. {
  208. SrvOpen, ItemUlongX //10
  209. Context, ItemUlongX //10
  210. }
  211. #typev MSG_ID_RxChangeBufferingState_2 29 "%4!s! CBS-2 %10!x! %11!x! %11!x!"
  212. {
  213. OldBufferingState, ItemUlongX //10
  214. NewBufferingState, ItemUlongX //10
  215. BufferingFlags, ItemUlongX //10
  216. }
  217. #typev MSG_ID_RxChangeBufferingState_3 30 "%4!s! CBS-Flush %10!x!"
  218. {
  219. Fcb, ItemUlongX //10
  220. }
  221. #typev MSG_ID_RxChangeBufferingState_4 31 "%4!s! CBS-purge %10!x!"
  222. {
  223. Fcb, ItemUlongX //10
  224. }
  225. #typev MSG_ID_RxChangeBufferingState_5 32 "%4!s! Exit-CBS %10!x!"
  226. {
  227. Fcb, ItemUlongX //10
  228. }
  229. #typev MSG_ID_RxFlushFcbInSystemCache 33 "%4!s! Flushing %10!x! Status %11!x!"
  230. {
  231. Fcb, ItemUlongX //10
  232. Status, ItemUlongX //11
  233. }
  234. #typev MSG_ID_RxPurgeFcbInSystemCache 34 "%4!s! Flushing %10!x! Status %11!x!"
  235. {
  236. Fcb, ItemUlongX //10
  237. Status, ItemUlongX //11
  238. }
  239. #typev MSG_ID_RxCopyCreateParameters_1 35 "%4!s! SDss %10!x! %11!x!"
  240. {
  241. SecurityContext, ItemUlongX //10
  242. SdLength, ItemUlongX //11
  243. }
  244. #typev MSG_ID_RxCopyCreateParameters_2 36 "%4!s! EAs %10!x! %11!x!"
  245. {
  246. SystemBuffer, ItemUlongX //10
  247. EaLength, ItemUlongX //11
  248. }
  249. #typev MSG_ID_RxFindOrCreateFcb 37 "%4!s! Found or created FCB %10!x! Condition %11!d!"
  250. {
  251. Fcb, ItemUlongX //10
  252. Condition, ItemUChar //11
  253. }
  254. #typev MSG_ID_RxSearchForCollapsibleOpen 38 "%4!s! ****** Delayed Close worked reusing SrvOpen(%10!x!)"
  255. {
  256. pSrvOpen, ItemUlongX //10
  257. }
  258. #typev MSG_ID_RxCollapseOrCreateSrvOpen 39 "%4!s! Transitioning FCB %10!x! Condition %11!d!"
  259. {
  260. Fcb, ItemUlongX //10
  261. Condition, ItemUChar //11
  262. }
  263. #typev MSG_ID_RxCommonCreate_1 40 "%4!s! DevOpen %10!x! %11!x! %12!x! %13!s!"
  264. {
  265. RxContext, ItemUlongX //10
  266. capFileObject, ItemUlongX //11
  267. RxDeviceObject,ItemUlongX //12
  268. DeviceName, ItemPWString //13
  269. }
  270. #typev MSG_ID_RxCommonCreate_2 41 "%4!s! Open Rx %10!x! ob %11!x! Options %12!x! Flags %13!x! Attr %14!x! ShareAccess %15!x! DesiredAccess %16!x!"
  271. {
  272. RxContext, ItemUlongX //10
  273. capFileObject, ItemUlongX //11
  274. Options, ItemUlongX //12
  275. Flags, ItemUChar //13
  276. FileAttributes,ItemUShort //14
  277. ShareAccess, ItemUShort //15
  278. DesiredAccess, ItemUlongX //16
  279. }
  280. #typev MSG_ID_RxCommonCreate_3 42 "%4!s! fn %10!s!"
  281. {
  282. FileName, ItemPWString //10
  283. }
  284. #typev MSG_ID_RxCommonCreate_4 43 "%4!s! relat %10!x! %11!s!"
  285. {
  286. FileObject, ItemUlongX //10
  287. FileName, ItemPWString //11
  288. }
  289. #typev MSG_ID_RxCommonCreate_5 44 "%4!s! OpenTargetDir! %10!x!"
  290. {
  291. Status, ItemUlongX //10
  292. }
  293. #typev MSG_ID_RxCommonClose_1 45 "%4!s! CClose %10!x! %11!x! %12!x! %13!x!"
  294. {
  295. RxContext, ItemUlongX //10
  296. capFobx, ItemUlongX //11
  297. capFcb, ItemUlongX //12
  298. capFileObject, ItemUlongX //13
  299. }
  300. #typev MSG_ID_RxCommonClose_2 46 "%4!s! @@@@DelayCls FOBX %10!x! SrvOpen %11!x! @@"
  301. {
  302. RxContext, ItemUlongX //10
  303. capFobx, ItemUlongX //11
  304. }
  305. #typev MSG_ID_RxCloseAssociatedSrvOpen 47 "%4!s! MRXClose %10!x! %11!x! %12!x! %13!x! %14!x!"
  306. {
  307. RxContext, ItemUlongX //10
  308. pFcb, ItemUlongX //11
  309. pSrvOpen, ItemUlongX //12
  310. Fobx, ItemUlongX //13
  311. Status, ItemUlongX //14
  312. }
  313. #typev MSG_ID_RxpCancelRoutine 48 "%4!s! Dec RxC %10!x! %11!x!"
  314. {
  315. pRxContext, ItemUlongX //10
  316. ReferenceCount, ItemUlongX //11
  317. }
  318. #typev MSG_ID_RxCancelNotifyChangeDirectoryRequestsForVNetRoot 49 "%4!s! CCtx %10!x! CRtn %11!x!"
  319. {
  320. pRxContext, ItemUlongX //10
  321. MRxCancelRoutine, ItemUlongX //11
  322. }
  323. #typev MSG_ID_RxCancelNotifyChangeDirectoryRequestsForFobx 50 "%4!s! CCtx %10!x! CRtn %11!x!"
  324. {
  325. pRxContext, ItemUlongX //10
  326. MRxCancelRoutine, ItemUlongX //11
  327. }
  328. #typev MSG_ID_RxCommonDirectoryControl 51 "%4!s! CommDirC %10!x! %11!x! %12!x! %13!d!"
  329. {
  330. RxContext, ItemUlongX //10
  331. Fobx, ItemUlongX //11
  332. pFcb, ItemUlongX //12
  333. MinorFunction, ItemUChar //13
  334. }
  335. #typev MSG_ID_RxQueryDirectory_1 52 "%4!s! Qry %10!x! Fl %11!x! %12!d! %13!x! %14!x!"
  336. {
  337. RxContext, ItemUlongX //10
  338. Flags, ItemUlongX //11
  339. Length, ItemUlongX //12
  340. FileName, ItemUlongX //13
  341. FileInfoClass, ItemUlongX //14
  342. }
  343. #typev MSG_ID_RxQueryDirectory_2 53 "%4!s! alsoqry %10!d! %11!x! %12!x!"
  344. {
  345. FileIndex, ItemUlongX //10
  346. UserBuffer, ItemUlongX //11
  347. Flags, ItemUChar //12
  348. }
  349. #typev MSG_ID_RxQueryDirectory_3 54 "%4!s! QryName %10!s!"
  350. {
  351. FileName, ItemPWString //10
  352. }
  353. #typev MSG_ID_RxCommonQueryInformation_1 55 "%4!s! QueryFileInfo %10!x! %11!x! %12!x!"
  354. {
  355. RxContext, ItemUlongX //10
  356. pFcb, ItemUlongX //11
  357. Fobx, ItemUlongX //12
  358. }
  359. #typev MSG_ID_RxCommonQueryInformation_2 56 "%4!s! alsoqfi %10!x! %11!x! %12!x!"
  360. {
  361. SystemBuffer, ItemUlongX //10
  362. Length, ItemUlongX //11
  363. FileInfoClass, ItemUlongX //12
  364. }
  365. #typev MSG_ID_RxCommonSetInformation_1 57 "%4!s! SetFileInfo %10!x! %11!x! %12!x!"
  366. {
  367. RxContext, ItemUlongX //10
  368. pFcb, ItemUlongX //11
  369. Fobx, ItemUlongX //12
  370. }
  371. #typev MSG_ID_RxCommonSetInformation_2 58 "%4!s! alsosfi %10!x! %11!x! %12!x! %13!x!"
  372. {
  373. SystemBuffer, ItemUlongX //10
  374. Length, ItemUlongX //11
  375. FileInfoClass, ItemUlongX //12
  376. ReplIfExists, ItemUlongX //13
  377. }
  378. #typev MSG_ID_RxSetBasicInfo 59 "%4!s! RxSetBasicInfo %10!x!"
  379. {
  380. RxContext, ItemUlongX //10
  381. }
  382. #typev MSG_ID_RxSetDispositionInfo 60 "%4!s! RxSetDispositionInfo %10!x!"
  383. {
  384. RxContext, ItemUlongX //10
  385. }
  386. #typev MSG_ID_RxSetRenameInfo 61 "%4!s! RxSetRenameInfo %10!x! %11!x!"
  387. {
  388. FileObject, ItemUlongX //10
  389. ReplIfExists, ItemUlongX //11
  390. }
  391. #typev MSG_ID_RxSetPositionInfo 62 "%4!s! RxSetPositionInfo %10!x!"
  392. {
  393. RxContext, ItemUlongX //10
  394. }
  395. #typev MSG_ID_RxSetAllocationInfo_1 63 "%4!s! SetAlloc %10!x! %11!x! %12!x!"
  396. {
  397. FileSize, ItemUlongX //10
  398. NewAllocSize, ItemUlongX //11
  399. AllocationSize, ItemUlongX //12
  400. }
  401. #typev MSG_ID_RxSetAllocationInfo_2 64 "%4!s! SetAllocExit %10!x! %11!x!"
  402. {
  403. FileSize, ItemUlongX //10
  404. AllocationSize, ItemUlongX //11
  405. }
  406. #typev MSG_ID_RxSetEndOfFileInfo_1 65 "%4!s! SetEof %10!x! %11!x! %12!x! %13!x!"
  407. {
  408. RxContext, ItemUlongX //10
  409. FileSize, ItemUlongX //11
  410. NewAllocSize, ItemUlongX //12
  411. AllocationSize, ItemUlongX //13
  412. }
  413. #typev MSG_ID_RxSetEndOfFileInfo_2 66 "%4!s! SetEofAdvance-NOT! %10!x!"
  414. {
  415. RxContext, ItemUlongX //10
  416. }
  417. #typev MSG_ID_RxSetEndOfFileInfo_3 67 "%4!s! SetEofabnormalorbadstatus %10!x! %11!x!"
  418. {
  419. RxContext, ItemUlongX //10
  420. Status, ItemUlongX //11
  421. }
  422. #typev MSG_ID_RxSetEndOfFileInfo_4 68 "%4!s! SetEofexit %10!x! %11!x! %12!x! %13!x!"
  423. {
  424. RxContext, ItemUlongX //10
  425. FileSize, ItemUlongX //11
  426. NewAllocSize, ItemUlongX //12
  427. AllocationSize, ItemUlongX //13
  428. }
  429. #typev MSG_ID_RxQueryBasicInfo 69 "%4!s! RxQueryBasicInfo %10!x!"
  430. {
  431. RxContext, ItemUlongX //10
  432. }
  433. #typev MSG_ID_RxQueryStandardInfo 70 "%4!s! RxQueryStandardInfo %10!x!"
  434. {
  435. RxContext, ItemUlongX //10
  436. }
  437. #typev MSG_ID_RxQueryInternalInfo 71 "%4!s! RxQueryInternalInfo %10!x!"
  438. {
  439. RxContext, ItemUlongX //10
  440. }
  441. #typev MSG_ID_RxQueryEaInfo 72 "%4!s! RxQueryEaInfo %10!x!"
  442. {
  443. RxContext, ItemUlongX //10
  444. }
  445. #typev MSG_ID_RxQueryPositionInfo 73 "%4!s! RxQueryPositionInfo %10!x!"
  446. {
  447. RxContext, ItemUlongX //10
  448. }
  449. #typev MSG_ID_RxQueryNameInfo 74 "%4!s! RxQueryNameInfo %10!x!"
  450. {
  451. RxContext, ItemUlongX //10
  452. }
  453. #typev MSG_ID_RxQueryAlternateNameInfo 75 "%4!s! RxQueryAlternateNameInfo %10!x!"
  454. {
  455. RxContext, ItemUlongX //10
  456. }
  457. #typev MSG_ID_RxQueryCompressedInfo 76 "%4!s! RxQueryCompressedInfo %10!x!"
  458. {
  459. RxContext, ItemUlongX //10
  460. }
  461. #typev MSG_ID_RxSetPipeInfo 77 "%4!s! RxSetPipeInfo %10!x!"
  462. {
  463. RxContext, ItemUlongX //10
  464. }
  465. #typev MSG_ID_RxQueryPipeInfo 78 "%4!s! RxQueryPipeInfo %10!x!"
  466. {
  467. RxContext, ItemUlongX //10
  468. }
  469. #typev MSG_ID_RxCommonFlushBuffers 79 "%4!s! CommonFlush slf %10!x! %11!x! %12!x!"
  470. {
  471. RxContext, ItemUlongX //10
  472. pFcb, ItemUlongX //11
  473. Fobx, ItemUlongX //12
  474. }
  475. #typev MSG_ID_RxCommonFileSystemControl 80 "%4!s! FsCtl %10!x! %11!x! %12!x! %13!x!"
  476. {
  477. RxContext, ItemUlongX //10
  478. Irp, ItemUlongX //11
  479. MinorFunction, ItemUChar //12
  480. FsControlCode, ItemUlongX //13
  481. }
  482. #typev MSG_ID_RxLowIoFsCtlShell 81 "%4!s! ThrottlQs %10!x! %11!x! %12!d!"
  483. {
  484. RxContext, ItemUlongX //10
  485. capFobx, ItemUlongX //11
  486. NumberOfQueries, ItemUlongX //12
  487. }
  488. #typev MSG_ID_RxLowIoFsCtlShellCompletion_1 82 "%4!s! ThrottlYes %10!x! %11!x! %12!d!"
  489. {
  490. RxContext, ItemUlongX //10
  491. capFobx, ItemUlongX //11
  492. NumberOfQueries, ItemUlongX //12
  493. }
  494. #typev MSG_ID_RxLowIoFsCtlShellCompletion_2 83 "%4!s! ThrottlNo %10!x! %11!x! %12!d!"
  495. {
  496. RxContext, ItemUlongX //10
  497. capFobx, ItemUlongX //11
  498. NumberOfQueries, ItemUlongX //12
  499. }
  500. #typev MSG_ID_RxCommonLockControl_1 84 "%4!s! Lock %10!x! %11!x! %12!d! %13!d!"
  501. {
  502. RxContext, ItemUlongX //10
  503. capFobx, ItemUlongX //11
  504. capFcb, ItemUlongX //12
  505. MinorFunction, ItemUChar //13
  506. }
  507. #typev MSG_ID_RxCommonLockControl_2 85 "%4!s! Inc RxC %10!x! L 197 %11!x!"
  508. {
  509. RxContext, ItemUlongX //10
  510. ReferenceCount,ItemUlongX //11
  511. }
  512. #typev MSG_ID_RxCommonLockControl_3 86 "%4!s! Inc RxC %10!x! L 232 %11!x!"
  513. {
  514. RxContext, ItemUlongX //10
  515. ReferenceCount,ItemUlongX //11
  516. }
  517. #typev MSG_ID_RxCommonLockControl_4 87 "%4!s! Dec RxC %10!x! L 250 %11!x!"
  518. {
  519. RxContext, ItemUlongX //10
  520. ReferenceCount,ItemUlongX //11
  521. }
  522. #typev MSG_ID_RxCommonLockControl_5 88 "%4!s! Dec RxC %10!x! L 295 %11!x!"
  523. {
  524. RxContext, ItemUlongX //10
  525. ReferenceCount,ItemUlongX //11
  526. }
  527. #typev MSG_ID_RxLockOperationCompletion_1 89 "%4!s! LockCompEntry %10!x! %11!x!"
  528. {
  529. RxContext, ItemUlongX //10
  530. Status, ItemUlongX //11
  531. }
  532. #typev MSG_ID_RxLockOperationCompletion_2 90 "%4!s! NULLCONTEXT %10!x! %11!x!"
  533. {
  534. RxContext, ItemUlongX //10
  535. Status, ItemUlongX //11
  536. }
  537. #typev MSG_ID_RxLockOperationCompletion_3 91 "%4!s! Inc RxC %10!x! L 417 %11!x!"
  538. {
  539. RxContext, ItemUlongX //10
  540. ReferenceCount,ItemUlongX //11
  541. }
  542. #typev MSG_ID_RxLockOperationCompletion_4 92 "%4!s! ResDropUp! %10!x! %11!x!"
  543. {
  544. RxContext, ItemUlongX //10
  545. FcbState, ItemUlongX //11
  546. }
  547. #typev MSG_ID_RxLockOperationCompletion_5 93 "%4!s! Dec RxC %10!x! L 468 %11!x!"
  548. {
  549. RxContext, ItemUlongX //10
  550. ReferenceCount,ItemUlongX //11
  551. }
  552. #typev MSG_ID_RxLockOperationCompletion_6 94 "%4!s! NONSUCCESS %10!x! %11!x!"
  553. {
  554. RxContext, ItemUlongX //10
  555. Status, ItemUlongX //11
  556. }
  557. #typev MSG_ID_RxLockOperationCompletion_7 95 "%4!s! LocksBuffered! %10!x! %11!x! %12!x!"
  558. {
  559. RxContext, ItemUlongX //10
  560. State, ItemUlongX //11
  561. ReferenceConut,ItemUlongX //12
  562. }
  563. #typev MSG_ID_RxLockOperationCompletion_8 96 "%4!s! Dec RxC %10!x! L 548 %11!x!"
  564. {
  565. RxContext, ItemUlongX //10
  566. ReferenceCount,ItemUlongX //11
  567. }
  568. #typev MSG_ID_RxLockOperationCompletionWithAcquire_1 97 "%4!s! LockAcq %10!x! %11!x! %12!d! %13!d!"
  569. {
  570. RxContext, ItemUlongX //10
  571. capFobx, ItemUlongX //11
  572. capFcb, ItemUlongX //12
  573. MinorFunction, ItemUChar //13
  574. }
  575. #typev MSG_ID_RxLockOperationCompletionWithAcquire_2 98 "%4!s! Inc RxC %10!x! L 635 %11!x!"
  576. {
  577. RxContext, ItemUlongX //10
  578. ReferenceCount,ItemUlongX //11
  579. }
  580. #typev MSG_ID_RxLockOperationCompletionWithAcquire_3 99 "%4!s! Dec RxC %10!x! L 680 %11!x!"
  581. {
  582. RxContext, ItemUlongX //10
  583. ReferenceCount,ItemUlongX //11
  584. }
  585. #typev MSG_ID_RxUnlockOperation 100 "%4!s! Unlck %10!x! %11!x!"
  586. {
  587. RxContext, ItemUlongX //10
  588. StartingByte, ItemUlongX //11
  589. }
  590. #typev MSG_ID_RxLowIoLockControlShellCompletion_1 101 "%4!s! LkShlComp %10!x!"
  591. {
  592. RxContext, ItemUlongX //10
  593. }
  594. #typev MSG_ID_RxLowIoLockControlShellCompletion_2 102 "%4!s! RetractLck %10!x! %11!x! %12!x!"
  595. {
  596. RxContext, ItemUlongX //10
  597. Status, ItemUlongX //11
  598. LocalStatus, ItemUlongX //12
  599. }
  600. #typev MSG_ID_RxFinalizeLockList 103 "%4!s! FinalizeLockList %10!x!"
  601. {
  602. RxContext, ItemUlongX //10
  603. }
  604. #typev MSG_ID_RxLowIoLockControlShell 104 "%4!s! LowIoLockControl %10!x!"
  605. {
  606. RxContext, ItemUlongX //10
  607. }
  608. #typev MSG_ID_RxRegisterMinirdr 105 "%4!s! RegMini %10!x! %11!s!"
  609. {
  610. Priority, ItemUlongX //10
  611. Devicename, ItemPWString //11
  612. }
  613. #typev MSG_ID_RxCommonDevFCBClose 106 "%4!s! DevFcbClose %10!x! %11!x!"
  614. {
  615. RxContext, ItemUlongX //10
  616. FileObject, ItemUlongX //11
  617. }
  618. #typev MSG_ID_RxCommonDevFCBCleanup 107 "%4!s! DevFcbCleanup %10!x! %11!x!"
  619. {
  620. RxContext, ItemUlongX //10
  621. FileObject, ItemUlongX //11
  622. }
  623. #typev MSG_ID_RxCommonDevFCBFsCtl 108 "%4!s! DevFcbFsCtl %10!x! %11!d! %12!x!"
  624. {
  625. RxContext, ItemUlongX //10
  626. MinorFunction, ItemUChar //11
  627. FsControlCode, ItemUlongX //12
  628. }
  629. #typev MSG_ID_RxCommonDevFCBQueryVolInfo 109 "%4!s! DevFcbQVolInfo %10!x! %11!d!"
  630. {
  631. RxContext, ItemUlongX //10
  632. InfoClass, ItemUlongX //11
  633. }
  634. #typev MSG_ID_RxExceptionFilter_1 110 "%4!s! !!! %10!x! %11!x! %12!x! %13!x!"
  635. {
  636. RxExpCode, ItemUlongX //10
  637. RxExpAddr, ItemUlongX //11
  638. RxExpEXR, ItemUlongX //12
  639. RxExpCXR, ItemUlongX //13
  640. }
  641. #typev MSG_ID_RxExceptionFilter_1 111 "%4!s! InPageError.... %10!x!"
  642. {
  643. RxContext, ItemUlongX //10
  644. }
  645. #typev MSG_ID_RxFastIoRead_1 112 "%4!s! FastRead %10!x!:%11!x!:%12!x! -->> %13!x!@%14!x! %15!x!"
  646. {
  647. FileObject, ItemUlongX //10
  648. FsContext, ItemUlongX //11
  649. FsContext2, ItemUlongX //12
  650. Length, ItemUlongX //13
  651. LowPart, ItemUlongX //14
  652. HighPart, ItemUlongX //15
  653. }
  654. #typev MSG_ID_RxFastIoRead_2 113 "%4!s! FastReadYes %10!x! ret %11!x!:%12!x!"
  655. {
  656. FsContext2, ItemUlongX //10
  657. Status, ItemUlongX //11
  658. Information, ItemUlongX //12
  659. }
  660. #typev MSG_ID_RxFastIoRead_3 114 "%4!s! FastReadNo %10!x!"
  661. {
  662. FsContext2, ItemUlongX //10
  663. }
  664. #typev MSG_ID_RxFastIoWrite_1 115 "%4!s! FWY %10!x! OLP: %11!x! SLP: %12!x! IOSB %13!x!:%14!x!"
  665. {
  666. FsContext2, ItemUlongX //10
  667. FileOffset, ItemUlongX //11
  668. FileSize, ItemUlongX //12
  669. Status, ItemUlongX //13
  670. Information, ItemUlongX //14
  671. }
  672. #typev MSG_ID_RxFastIoWrite_2 116 "%4!s! FastWriteNo %10!x!"
  673. {
  674. FsContext2, ItemUlongX //10
  675. }
  676. #typev MSG_ID_RxFastIoCheckIfPossible 117 "%4!s! CheckFast fail %10!x! %11!s!"
  677. {
  678. FsContext2, ItemUlongX //10
  679. Reason, ItemString //11
  680. }
  681. #typev MSG_ID_RxFspDispatch 118 "%4!s! Fsp %15!s!/%14!x! %10!x! irp %11!x! thrd %12!x! #%13!d!"
  682. {
  683. RxContext, ItemUlongX //10
  684. Irp, ItemUlongX //11
  685. Thread, ItemUlongX //12
  686. SerialNumber, ItemUlongX //13
  687. MinorFunction, ItemUChar //14
  688. Function, ItemString //15
  689. }
  690. #typev MSG_ID_RxFsdPostRequest 119 "%4!s! POST %15!s!/%14!x! %10!x! irp %11!x! thrd %12!x! #%13!d!"
  691. {
  692. RxContext, ItemUlongX //10
  693. Irp, ItemUlongX //11
  694. Thread, ItemUlongX //12
  695. SerialNumber, ItemUlongX //13
  696. MinorFunction, ItemUChar //14
  697. Function, ItemString //15
  698. }
  699. #typev MSG_ID_RxGetNetworkProviderPriority 120 "%4!s! FindUncProvider %10!s!"
  700. {
  701. DeviceName, ItemString //10
  702. }
  703. #typev MSG_ID_RxAccrueProviderFromServiceName_1 121 "%4!s! SvcNm %10!s!"
  704. {
  705. ServiceName, ItemString //10
  706. }
  707. #typev MSG_ID_RxAccrueProviderFromServiceName_2 122 "%4!s! Dvc p=%10!x! Name %11!s!"
  708. {
  709. Priority, ItemUlongX //10
  710. ServiceName, ItemString //11
  711. }
  712. #typev MSG_ID_RxConstructProviderOrder_1 123 "%4!s! RxConstructProviderOrder %10!x!"
  713. {
  714. Priority, ItemUlongX //10
  715. }
  716. #typev MSG_ID_RxConstructProviderOrder_2 124 "%4!s! prov string=%10!x!,allock=%11!x!"
  717. {
  718. DataLength, ItemUlongX //10
  719. AllocLength, ItemUlongX //11
  720. }
  721. #typev MSG_ID_RxCommonRead_1 125 "%4!s! CommonRead %10!x! %11!x! %12!x!"
  722. {
  723. RxContext, ItemUlongX //10
  724. capFobx, ItemUlongX //11
  725. capFcb, ItemUlongX //12
  726. }
  727. #typev MSG_ID_RxCommonRead_2 126 "%4!s! read %10!x!@%11!x! %12!x! Wait %13!d! PagingIo %14!d! NonCachedIo %15!d! SyncIo %16!d! "%4!s!
  728. {
  729. Length, ItemUlongX //10
  730. ByteOffsetLo, ItemUlongX //11
  731. ByteOffsetHi, ItemUlongX //12
  732. Wait, ItemUChar //13
  733. PagingIo, ItemUChar //14
  734. NonCachedIo, ItemUChar //15
  735. SynchronousIo, ItemUChar //16
  736. }
  737. #typev MSG_ID_RxCommonRead_3 127 "%4!s! RdAsyLNG %10!x!"
  738. {
  739. RxContext, ItemUlongX //10
  740. }
  741. #typev MSG_ID_RxCommonRead_4 128 "%4!s! RdAsyOthr %10!x!"
  742. {
  743. RxContext, ItemUlongX //10
  744. }
  745. #typev MSG_ID_RxLowIoReadShellCompletion_1 129 "%4!s! RdShlComp %10!x! %11!x! %12!x!"
  746. {
  747. RxContext, ItemUlongX //10
  748. Status, ItemUlongx //11
  749. Information, ItemUlongx //12
  750. }
  751. #typev MSG_ID_RxLowIoReadShellCompletion_2 130 "%4!s! RThrottlYes %10!x! %11!x! %12!x!"
  752. {
  753. RxContext, ItemUlongX //10
  754. capFobx, ItemUlongx //11
  755. NumberOfQueries, ItemUlongx //12
  756. }
  757. #typev MSG_ID_RxLowIoReadShellCompletion_3 131 "%4!s! RThrottlNo %10!x! %11!x! %12!x!"
  758. {
  759. RxContext, ItemUlongX //10
  760. capFobx, ItemUlongx //11
  761. NumberOfQueries, ItemUlongx //12
  762. }
  763. #typev MSG_ID_RxLowIoReadShell_1 132 "%4!s! RdShl in %10!x!"
  764. {
  765. RxContext, ItemUlongX //10
  766. }
  767. #typev MSG_ID_RxLowIoReadShell_2 133 "%4!s! RdShl out %10!x! %11!x!"
  768. {
  769. RxContext, ItemUlongX //10
  770. Status, ItemUlongx //11
  771. }
  772. #typev MSG_ID_RxSetDomainForMailslotBroadcast_1 134 "%4!s! Set DomainName %10!s!"
  773. {
  774. DomainName, ItemString //10
  775. }
  776. #typev MSG_ID_RxSetDomainForMailslotBroadcast_2 135 "%4!s! CapturedDomainName %10!s!"
  777. {
  778. DomainName, ItemString //10
  779. }
  780. #typev MSG_ID_RxCommonQueryVolumeInformation_1 136 "%4!s! QueryVolInfo %10!x! %11!x! %12!x!"
  781. {
  782. RxContext, ItemUlongX //10
  783. capFcb, ItemUlongx //11
  784. capFobx, ItemUlongx //12
  785. }
  786. #typev MSG_ID_RxCommonQueryVolumeInformation_2 137 "%4!s! alsoqvi %10!x! %11!x! %12!x!"
  787. {
  788. OriginalLength, ItemUlongX //10
  789. FsInfoClass, ItemUlongx //11
  790. OriginalBuffer, ItemUlongx //12
  791. }
  792. #typev MSG_ID_RxCommonSetVolumeInformation_1 138 "%4!s! SetVolInfo %10!x! %11!x! %12!x!"
  793. {
  794. RxContext, ItemUlongX //10
  795. capFcb, ItemUlongx //11
  796. capFobx, ItemUlongx //12
  797. }
  798. #typev MSG_ID_RxCommonSetVolumeInformation_2 139 "%4!s! alsosvi %10!x! %11!x! %12!x!"
  799. {
  800. OriginalLength, ItemUlongX //10
  801. FsInfoClass, ItemUlongx //11
  802. OriginalBuffer, ItemUlongx //12
  803. }
  804. #typev MSG_ID_RxCommonWrite_1 140 "%4!s! CommonWrite %10!x! %11!x! %12!x!"
  805. {
  806. RxContext, ItemUlongX //10
  807. capFobx, ItemUlongX //11
  808. capFcb, ItemUlongX //12
  809. }
  810. #typev MSG_ID_RxCommonWrite_2 141 "%4!s! Write %10!x!@%11!x! %12!x! Wait %13!d! PagingIo %14!d! NonCachedIo %15!d! SyncIo %16!d!"
  811. {
  812. Length, ItemUlongX //10
  813. ByteOffsetLo, ItemUlongX //11
  814. ByteOffsetHi, ItemUlongX //12
  815. Wait, ItemUChar //13
  816. PagingIo, ItemUChar //14
  817. NonCachedIo, ItemUChar //15
  818. SynchronousIo, ItemUChar //16
  819. }
  820. #typev MSG_ID_RxCommonWrite_3 142 "%4!s! RxCommonWrite Disable Collapsing %10!x!"
  821. {
  822. capFcb, ItemUlongX //10
  823. }
  824. #typev MSG_ID_RxCommonWrite_4 143 "%4!s! NeedToExtending %10!x!"
  825. {
  826. RxContext, ItemUlongX //10
  827. }
  828. #typev MSG_ID_RxCommonWrite_5 144 "%4!s! Extending %10!x!"
  829. {
  830. RxContext, ItemUlongX //10
  831. }
  832. #typev MSG_ID_RxCommonWrite_6 145 "%4!s! CcCW2 FO %10!x! Of %11!x! Si %12!x! St %13!x!"
  833. {
  834. FileObject, ItemUlongX //10
  835. FileSize, ItemUlongX //11
  836. ByteCount, ItemUlongX //12
  837. Status, Status //13
  838. }
  839. #typev MSG_ID_RxCommonWrite_7 146 "%4!s! CcCW3 FO %10!x! Of %11!x! Si %12!x! St %13!x!"
  840. {
  841. FileObject, ItemUlongX //10
  842. FileSize, ItemUlongX //11
  843. ByteCount, ItemUlongX //12
  844. Status, Status //13
  845. }
  846. #typev MSG_ID_RxLowIoWriteShellCompletion_1 147 "%4!s! WtShlComp %10!x! %11!x! %12!x!"
  847. {
  848. RxContext, ItemUlongX //10
  849. Status, ItemUlongX //11
  850. Information, ItemUlongX //12
  851. }
  852. #typev MSG_ID_RxLowIoWriteShellCompletion_2 148 "%4!s! WThrottlNo %10!x! %11!x! %12!x!"
  853. {
  854. RxContext, ItemUlongX //10
  855. capFobx, ItemUlongX //11
  856. NumberOfQueries, ItemUlongX //12
  857. }
  858. #typev MSG_ID_RxLowIoWriteShell_1 149 "%4!s! WrtShl in %10!x!"
  859. {
  860. RxContext, ItemUlongX //10
  861. }
  862. #typev MSG_ID_RxLowIoWriteShell_2 150 "%4!s! WrtShl out %10!x! %11!x!"
  863. {
  864. RxContext, ItemUlongX //10
  865. Status, ItemUlongx //11
  866. }
  867. #typev MSG_ID_RxFinalizeNetTable_1 151 "%4!s! FINALNETT %10!x!"
  868. {
  869. RxDeviceObject, ItemUlongX //10
  870. }
  871. #typev MSG_ID_RxFinalizeNetTable_2 152 "%4!s! FINALNETT: %10!x! %11!s!"
  872. {
  873. pContainer, ItemUlongX //10
  874. Prefix, ItemPWString //11
  875. }
  876. #typev MSG_ID_RxFinalizeConnection 153 "%4!s! FINALCONN: %10!x! %11!s!"
  877. {
  878. NetRoot, ItemUlongX //10
  879. Prefix, ItemPWString //11
  880. }
  881. #typev MSG_ID_RxFinalizeSrvCall 154 "%4!s! FINALSRVC: %10!x! %11!s!"
  882. {
  883. SrvCall, ItemUlongX //10
  884. Prefix, ItemPWString //11
  885. }
  886. #typev MSG_ID_RxFinalizeNetRoot 155 "%4!s! FINALNETROOT: %10!x! %11!s!"
  887. {
  888. NetRoot, ItemUlongX //10
  889. Prefix, ItemPWString //11
  890. }
  891. #typev MSG_ID_RxFinalizeVNetRoot 156 "%4!s! FINALVNETROOT: %10!x! %11!s!"
  892. {
  893. VNetRoot, ItemUlongX //10
  894. Prefix, ItemPWString //11
  895. }
  896. #typev MSG_ID_RxCreateNetFcb_1 157 "%4!s! FakeFinally %10!x!"
  897. {
  898. RxContext, ItemUlongX //10
  899. }
  900. #typev MSG_ID_RxCreateNetFcb_2 158 "%4!s! Fcb nm %10!x! %11!s!"
  901. {
  902. Fcb, ItemUlongX //10
  903. Path, ItemPWString //11
  904. }
  905. #typev MSG_ID_RxCreateNetFcb_3 159 "%4!s! %10!s! %11!s! %12!s!"
  906. {
  907. buffer, ItemPWString //11
  908. jPrefix, ItemPWString //11
  909. jSuffix, ItemPWString //11
  910. }
  911. #typev MSG_ID_RxFinalizeNetFcb 160 "%4!s! FinalFcb %10!x! %11!x! %12!x! %13!x!"
  912. {
  913. ThisFcb, ItemUlongX //10
  914. ForceFinalize, ItemUChar //11
  915. RefCount, ItemUlongX //12
  916. OpenCount, ItemUlongX //13
  917. }
  918. #typev MSG_ID_RxCreateSrvOpen 161 "%4!s! New SrvOp %10!x! %11!x!"
  919. {
  920. SrvOpen, ItemUlongX //10
  921. Fcb, ItemUChar //11
  922. }
  923. #typev MSG_ID_RxFinalizeSrvOpen 162 "%4!s! FinalSrvOp %10!x! %11!x! %12!x!"
  924. {
  925. SrvOpen, ItemUlongX //10
  926. ForceFinalize, ItemUChar //11
  927. RefCount, ItemUlongX //12
  928. }
  929. #typev MSG_ID_RxCreateNetFobx 163 "%4!s! New Fobx %10!x! %11!x! %12!x!"
  930. {
  931. Fobx, ItemUlongX //10
  932. SrvOpen, ItemUlongX //11
  933. Fcb, ItemUlongX //12
  934. }
  935. #typev MSG_ID_RxFinalizeNetFobx_1 164 "%4!s! FinalFobx %10!x! %11!x! %12!x!"
  936. {
  937. SrvOpen, ItemUlongX //10
  938. ForceFinalize, ItemUChar //11
  939. RefCount, ItemUlongX //12
  940. }
  941. #typev MSG_ID_RxFinalizeNetFobx_2 165 "%4!s! $$ScCl FOBX %10!x! SrvOp %11!x! %12!x!"
  942. {
  943. Fobx, ItemUlongX //10
  944. SrvOpen, ItemUlongX //11
  945. Status, ItemUlongX //12
  946. }
  947. #typev MSG_ID_RxUninitializeMidMap 166 "%4!s! _UninitMidMap .. num= %10!d!"
  948. {
  949. NumberOfMidsInUse, ItemUShort //10
  950. }
  951. #typev MSG_ID_RxAcquireFcb_1 167 "%4!s! _RxAcquireFcb CBS wait %10!x!"
  952. {
  953. pFcb, ItemUlongX //10
  954. }
  955. #typev MSG_ID_RxAcquireFcb_2 168 "%4!s! _RxAcquireFcb CBS wait over %10!x!"
  956. {
  957. pFcb, ItemUlongX //10
  958. }
  959. #typev MSG_ID_RxCeBuildTransport 169 "%4!s! RxCeBindToTransport T: %10!x!"
  960. {
  961. pTransport, ItemUlongX //10
  962. }
  963. #typev MSG_ID_RxCeTearDownTransport 170 "%4!s! RxCeTdT: T: %10!x!"
  964. {
  965. pTransport, ItemUlongX //10
  966. }
  967. #typev MSG_ID_RxCeQueryAdapterStatus 171 "%4!s! RXCeQAS: T: %10!x!"
  968. {
  969. pTransport, ItemUlongX //10
  970. }
  971. #typev MSG_ID_RxCeQueryTransportInformation 172 "%4!s! RXCeQTI: T: %10!x!"
  972. {
  973. pTransport, ItemUlongX //10
  974. }
  975. #typev MSG_ID_RxCeBuildAddress 173 "%4!s! RxCeBA: T: %10!x! A: %11!x!"
  976. {
  977. pTransport, ItemUlongX //10
  978. pAddress, ItemUlongX //11
  979. }
  980. #typev MSG_ID_RxCeBuildVC 174 "%4!s! RxCeAddVC: VC: %10!x! Status %11!x!"
  981. {
  982. pVc, ItemUlongX //10
  983. Status, ItemUlongX //11
  984. }
  985. #typev MSG_ID_RxCeInitiateVCDisconnect 175 "%4!s! RxCeInitiateVCDisconnect: VC: %10!x! Status %11!x!"
  986. {
  987. pVc, ItemUlongX //10
  988. Status, ItemUlongX //11
  989. }
  990. #typev MSG_ID_RxCeTearDownVC 176 "%4!s! RxCeTearDownVC: VC: %10!x! Status %11!x!"
  991. {
  992. pVc, ItemUlongX //10
  993. Status, ItemUlongX //11
  994. }
  995. #typev MSG_ID_RxCeBuildConnection 177 "%4!s! RxCeCreateConnection %10!x!"
  996. {
  997. pAddress, ItemUlongX //10
  998. }
  999. #typev MSG_ID_RxCeCleanupConnectCallOutContext 178 "%4!s! Freeparamblock %10!x! %3!x!"
  1000. {
  1001. ParameterBlock, ItemUlongX //10
  1002. }
  1003. #typev MSG_ID_RxCeCompleteConnectRequest 179 "%4!s! Use paramblock %10!x! %3!x!"
  1004. {
  1005. ParameterBlock, ItemUlongX //10
  1006. }
  1007. #typev MSG_ID_RxCeBuildConnectionOverMultipleTransports_1 180 "%4!s! RxCeBldOvrMult LocalStatus %10!x!"
  1008. {
  1009. Status, ItemUlongX //10
  1010. }
  1011. #typev MSG_ID_RxCeBuildConnectionOverMultipleTransports_2 181 "%4!s! RxCeBldOvrMult Failed Status %10!x!"
  1012. {
  1013. Status, ItemUlongX //10
  1014. }
  1015. #typev MSG_ID_RxCeTearDownConnection 182 "%4!s! RxCeTearDownConnection: C: !x!"
  1016. {
  1017. pConnection, ItemUlongX //10
  1018. }
  1019. #typev MSG_ID_RxCeSend 183 "%4!s! RxCeSend: T: %10!x! A: %11!x! C: %12!x! VC: %13!x!"
  1020. {
  1021. pTransport, ItemUlongX //10
  1022. pAddress, ItemUlongX //11
  1023. pConnection, ItemUlongX //12
  1024. pVc, ItemUlongX //13
  1025. }
  1026. #typev MSG_ID_RxCeSendDatagram 184 "%4!s! RxCeSendDg: T: %10!x! A: %11!x!"
  1027. {
  1028. pTransport, ItemUlongX //10
  1029. pAddress, ItemUlongX //11
  1030. }
  1031. #typev MSG_ID_RxFindOrCreateConnections_1 185 "%4!s! FOrCC1 %10!x! %11!x! %12!s!"
  1032. {
  1033. RxContext, ItemUlongX //10
  1034. Container, ItemUlongX //11
  1035. FilePathName, ItemPWString //12
  1036. }
  1037. #typev MSG_ID_RxFindOrCreateConnections_2 186 "%4!s! FOrCC %10!x! %11!x! Failed %12!x! VNRc %13!x!"
  1038. {
  1039. RxContext, ItemUlongX //10
  1040. VNetRoot, ItemUlongX //11
  1041. Status, ItemUlongX //12
  1042. Condition, ItemUlongX //13
  1043. }
  1044. #typev MSG_ID_RxFinishSrvCallConstruction 187 "%4!s! WINNER %10!x! %11!s!"
  1045. {
  1046. CallbackContext, ItemUlongX //10
  1047. DeviceName, ItemPWString //11
  1048. }
  1049. #typev MSG_ID_RxConstructSrvCall 188 "%4!s! Calldwn %10!x! %11!s!"
  1050. {
  1051. SCCBC, ItemUlongX //10
  1052. DeviceName, ItemPWString //11
  1053. }
  1054. #typev MSG_ID_RxFindOrConstructVirtualNetRoot 189 "%4!s! FOrCVNR CSC instance %10!x!"
  1055. {
  1056. pVNetRoot, ItemUlongX //10
  1057. }
  1058. #typev MSG_ID_RxSpinUpWorkerThread 190 "%4!s! WorkQ: %10!x! SpinUpStat %11!x!"
  1059. {
  1060. pWorkQueue, ItemUlongX //10
  1061. Status, ItemUlongX //11
  1062. }
  1063. #typev MSG_ID_RxSpinUpRequestsDispatcher 191 "%4!s! WorkQ:SR %10!x! %11!x!"
  1064. {
  1065. Routine, ItemUlongX //10
  1066. pParameter, ItemUlongX //11
  1067. }
  1068. #typev MSG_ID_RxpWorkerThreadDispatcher 192 "%4!s! WorkQ:Ex Dev(%10!x!) %11!x! %12!x!"
  1069. {
  1070. pMRxDeviceObject, ItemUlongX //10
  1071. Routine, ItemUlongX //11
  1072. pParameter, ItemUlongX //12
  1073. }
  1074. #typev MSG_ID_RxWorkItemDispatcher 193 "%4!s! WorkQ:Ds %10!x! %11!x!"
  1075. {
  1076. Routine, ItemUlongX //10
  1077. pParameter, ItemUlongX //11
  1078. }
  1079. #typev MSG_ID_RxDispatchToWorkerThread 194 "%4!s! WORKQ:Queue(D) %10!d! %11!x! %12!x! %13!x!"
  1080. {
  1081. WorkQueueType, ItemUlongX //10
  1082. Routine, ItemUlongX //11
  1083. pContext, ItemUlongX //12
  1084. Status, ItemUlongX //13
  1085. }
  1086. #typev MSG_ID_RxPostToWorkerThread 195 "%4!s! WORKQ:Queue(P) %10!d! %11!x! %12!x! %13!x!"
  1087. {
  1088. WorkQueueType, ItemUlongX //10
  1089. Routine, ItemUlongX //11
  1090. pContext, ItemUlongX //12
  1091. Status, ItemUlongX //13
  1092. }
  1093. #typev MSG_ID_RxPurgeFobxFromCache 196 "%4!s! Skipping Purging %10!x!"
  1094. {
  1095. pFobxToBePurged, ItemUlongX //10
  1096. }
  1097. #typev MSG_ID_RxPurgeFobx_1 197 "%4!s! PurgeFobxCCFail %10!x! %11!x!"
  1098. {
  1099. pFobx, ItemUlongX //10
  1100. pFcb, ItemUlongX //11
  1101. }
  1102. #typev MSG_ID_RxPurgeFobx_2 198 "%4!s! PurgeFobxImFail %10!x! %11!x!"
  1103. {
  1104. pFobx, ItemUlongX //10
  1105. pFcb, ItemUlongX //11
  1106. }
  1107. #typev MSG_ID_RxPurgeFobx_3 199 "%4!s! PurgeFobxUsFail %10!x! %11!x!"
  1108. {
  1109. pFobx, ItemUlongX //10
  1110. pFcb, ItemUlongX //11
  1111. }
  1112. #typev MSG_ID_RxPurgeFobx_4 200 "%4!s! PurgeFobx Succeed %10!x! %11!x!"
  1113. {
  1114. pFobx, ItemUlongX //10
  1115. pFcb, ItemUlongX //11
  1116. }
  1117. #typev MSG_ID_RxPurgeRelatedFobxs_1 201 "%4!s! TempFobx=%10!x!"
  1118. {
  1119. pTempFobx, ItemUlongX //10
  1120. }
  1121. #typev MSG_ID_RxPurgeRelatedFobxs_2 202 "%4!s! SCVNGR:FailedToPurge %10!x!"
  1122. {
  1123. pFcb, ItemUlongX //10
  1124. }
  1125. #typev MSG_ID_RxPurgeAllFobxs 203 "%4!s! RxPurgeAllFobxs: FCB %10!x! not accqd."
  1126. {
  1127. pFcb, ItemUlongX //10
  1128. }
  1129. #typev MSG_ID_RxpMarkInstanceForScavengedFinalization 204 "%4!s! Marked for scavenging %10!x!"
  1130. {
  1131. pNode, ItemUlongX //10
  1132. }
  1133. #typev MSG_ID_RxScavengerFinalizeEntries 205 "%4!s! Delayed Close Failure FOBX(%10!x!) FCB(%11!x!)"
  1134. {
  1135. pFobx, ItemUlongX //10
  1136. pFcb, ItemUlongX //11
  1137. }
  1138. #typev MSG_ID_RxCeBuildTransport 206 "%4!s! RxCeBindToTransport: T: %10!x!"
  1139. {
  1140. pTransport, ItemUlongX //10
  1141. }
  1142. #typev MSG_ID_RxLastChanceHandlerForChangeBufferingStateRequests_4 207 "%4!s! Drop CBS request for Fcb %10!x!"
  1143. {
  1144. Fcb, ItemUlongX //10
  1145. }
  1146. #typev MSG_ID_RxInsertWorkQueueItem 208 "%4!s! Fail to Insert WQ Item %10!x! %11!x! %12!x! %13!s!"
  1147. {
  1148. pDeviceObject, ItemUlongX //10
  1149. WorkQueueType, ItemUlongX //11
  1150. pWorkQueueItem, ItemUlongX //12
  1151. DeviceName, ItemPWString //13
  1152. }
  1153. #typev MSG_ID_RxRefSrvcall 209 "%4!s! ref SrvCall %10!08x! refcount %11!d! at line %12!5d! %13!s!"
  1154. #typev MSG_ID_RxRefNetRoot 210 "%4!s! ref NetRoot %10!08x! refcount %11!d! at line %12!5d! %13!s!"
  1155. #typev MSG_ID_RxRefVNetRoot 211 "%4!s! ref VNetRoot %10!08x! refcount %11!d! at line %12!5d! %13!s!"
  1156. #typev MSG_ID_RxRefFcb 212 "%4!s! ref Fcb %10!08x! refcount %11!d! at line %12!5d! %13!s!"
  1157. #typev MSG_ID_RxRefSrvOpen 213 "%4!s! ref SrvCall %10!08x! refcount %11!d! at line %12!5d! %13!s!"
  1158. #typev MSG_ID_RxRefFobx 214 "%4!s! ref Fobx %10!08x! refcount %11!d! at line %12!5d! %13!s!"
  1159. #typev MSG_ID_RxDerefSrvcall 215 "%4!s! deref SrvCall %10!08x! refcount %11!d! at line %12!5d! %13!s!"
  1160. #typev MSG_ID_RxDerefNetRoot 216 "%4!s! deref NetRoot %10!08x! refcount %11!d! at line %12!5d! %13!s!"
  1161. #typev MSG_ID_RxDerefVNetRoot 217 "%4!s! deref VNetRoot %10!08x! refcount %11!d! at line %12!5d! %13!s!"
  1162. #typev MSG_ID_RxDerefFcb 218 "%4!s! deref Fcb %10!08x! refcount %11!d! at line %12!5d! %13!s!"
  1163. #typev MSG_ID_RxDerefSrvOpen 219 "%4!s! deref SrvOpen %10!08x! refcount %11!d! at line %12!5d! %13!s!"
  1164. #typev MSG_ID_RxDerefFobx 220 "%4!s! deref Fobx %10!08x! refcount %11!d! at line %12!5d! %13!s!"
  1165. {
  1166. pInstance, ItemUlongX // 10
  1167. RefConut, ItemUlongX // 11
  1168. Line, ItemUlongX // 12
  1169. File, ItemString // 13
  1170. }
  1171. #typev MSG_ID_RxTdiAsynchronousConnectCompletion 221 "%4!s! AsyncConn Completion %10!x! %11!s!"
  1172. {
  1173. Status, ItemUlongX //10
  1174. TransportName, ItemPWString //11
  1175. }
  1176. #typev MSG_ID_RxPurgeRelatedFobxs_3 222 "%4!s! PurgeInProgress thrd %3!x! RxContext %10!x! NetRoot %11!x!"
  1177. {
  1178. pRxContext, ItemUlongX //10
  1179. pNetRoot, ItemPWString //11
  1180. }
  1181. #typev MSG_ID_MSG_ID_RxTrackPagingIoResource_1 223 "%4!s! AcqPagingIoResEx thrd %3!x! Fcb %10!x! at line %11!5d! %12!s!"
  1182. #typev MSG_ID_MSG_ID_RxTrackPagingIoResource_2 224 "%4!s! AcqPagingIoResSh thrd %3!x! Fcb %10!x! at line %11!5d! %12!s!"
  1183. #typev MSG_ID_MSG_ID_RxTrackPagingIoResource_3 225 "%4!s! RelPagingIoRes thrd %3!x! Fcb %10!x! at line %11!5d! %12!s!"
  1184. {
  1185. Fcb, ItemUlongX //10
  1186. Line, ItemUlongX //11
  1187. File, ItemString //12
  1188. }
  1189. eab93e5c-02ce-4e33-9419-901d82868816 MRxSmb
  1190. #typev MSG_ID_MRxSmbFsdDispatch_Entry 2 "%4!s! MRxSmbFsdDispatch_Entry Irp %10!08x! Status %11!08x!"
  1191. {
  1192. Irp, ItemUlongX // 10
  1193. Status, ItemUlongX // 11
  1194. }
  1195. #typev MSG_ID_MRxSmbRefServerEntry 3 "%4!s! ref ServerEntry %10!08x! state %11!d! refcount %12!d! at line %13!5d! %14!s!"
  1196. #typev MSG_ID_MRxSmbRefNetRootEntry 4 "%4!s! ref NetRootEntry %10!08x! state %11!d! refcount %12!d! at line %13!5d! %14!s!"
  1197. #typev MSG_ID_MRxSmbRefSessionEntry 5 "%4!s! ref SessionEntry %10!08x! stage %11!d! refcount %12!d! at line %13!5d! %14!s!"
  1198. #typev MSG_ID_MRxSmbRefVNetRootContext 6 "%4!s! ref VNetRootContext %10!08x! state %11!d! refcount %12!d! at line %13!5d! %14!s!"
  1199. #typev MSG_ID_MRxSmbDerefServerEntry 7 "%4!s! deref ServerEntry %10!08x! state %11!d! refcount %12!d! at line %13!5d! %14!s!"
  1200. #typev MSG_ID_MRxSmbDerefNetRootEntry 8 "%4!s! deref NetRootEntry %10!08x! state %11!d! refcount %12!d! at line %13!5d! %14!s!"
  1201. #typev MSG_ID_MRxSmbDerefSessionEntry 9 "%4!s! deref SessionEntry %10!08x! stage %11!d! refcount %12!d! at line %13!5d! %14!s!"
  1202. #typev MSG_ID_MRxSmbDerefVNetRootContext 10 "%4!s! deref VNetRootContext %10!08x! state %11!d! refcount %12!d! at line %13!5d! %14!s!"
  1203. {
  1204. pInstance, ItemUlongX // 10
  1205. State, ItemUlongX // 11
  1206. RefConut, ItemUlongX // 12
  1207. Line, ItemUlongX // 13
  1208. File, ItemString // 14
  1209. }
  1210. #typev MSG_ID_MRxSmbCreate 11 "%4!s! MRxSmbCreate exits %10!x! %11!s!"
  1211. {
  1212. Status, ItemUlongX //10
  1213. RemainingName, ItemPWString //11
  1214. }
  1215. #typev MSG_ID_SmbPseExchangeStart_CoreInfo 12 "%4!s! clustersize rx/n/cs %10!x! %11!x! %12!x!"
  1216. {
  1217. RxContext, ItemUlongX // 10
  1218. pNetRoot, ItemUlongX // 11
  1219. ClusterSize, ItemUlongX // 12
  1220. }
  1221. #typev MSG_ID_MRxSmbExtendForCache 13 "%4!s! Extend exit %10!x! %11!x! %12!x! %13!x! %14!x!"
  1222. {
  1223. RxContext, ItemUlongX // 10
  1224. FileSize, ItemUlongX // 11
  1225. AllocationSize, ItemUlongX // 13
  1226. pNewFileSize, ItemUlongX // 14
  1227. pNewAllocationSize, ItemUlongX // 15
  1228. }
  1229. #typev MSG_ID_MRxSmbCoreDeleteForSupercedeOrClose 14 "%4!s! Delete File: %10!x! %11!s!"
  1230. {
  1231. Status, ItemUlongX //10
  1232. pPathArgument1, ItemPWString //11
  1233. }
  1234. #typev MSG_ID_MRxSmbAllocateSideBuffer 15 "%4!s! Allocsidebuf %10!x! fo/f=%11!x!,%12!x!"
  1235. {
  1236. SideBuffer, ItemUlongX // 10
  1237. capFobx, ItemUlongX // 11
  1238. capFcb, ItemUlongX // 12
  1239. }
  1240. #typev MSG_ID_MRxSmbDeallocateSideBuffer 16 "%4!s! Deallocsidebuf %10!x! fo/f=%11!x!,%12!x!"
  1241. {
  1242. SideBuffer, ItemUlongX // 10
  1243. capFobx, ItemUlongX // 11
  1244. capFcb, ItemUlongX // 12
  1245. }
  1246. #typev MSG_ID_MrxSmbUnalignedDirEntryCopyTail 17 "%4!s! sidebufdealloc %10!x! %11!x!"
  1247. {
  1248. RxContext, ItemUlongX // 10
  1249. smbFobx, ItemUlongX // 11
  1250. }
  1251. #typev MSG_ID_MRxSmbQueryDirectory 18 "%4!s! MRxqdir: rinfo %10!x! olen %11!x! thisl %12!x!"
  1252. {
  1253. ResumeInfo, ItemUlongX // 10
  1254. BufferLength, ItemUlongX // 11
  1255. BytesReceived, ItemUlongX // 12
  1256. }
  1257. #typev MSG_ID_SmbCeGetConfigurationInformation 19 "%4!s! Invalid Transport Binding string... using all transports %10!x!"
  1258. {
  1259. Status, ItemUlongX // 10
  1260. }
  1261. #typev MSG_ID_UninitializeMidMap 20 "%4!s! UninitMidMap .. num= %10!x!"
  1262. {
  1263. NumberOfMidsInUse, ItemUlongX // 10
  1264. }
  1265. #typev MSG_ID_MRxSmbDeferredCreate_1 21 "%4!s! DeferredOpen %10!x! %11!x! %12!x! %13!x!"
  1266. {
  1267. capFcb, ItemUlongX // 10
  1268. capFobx, ItemUlongX // 11
  1269. RxContext, ItemUlongX // 12
  1270. Status, ItemUlongX // 13
  1271. }
  1272. #typev MSG_ID_MRxSmbDeferredCreate_2 22 "%4!s! RB Re-Open %10!x! %11!x! %12!x! %13!x!"
  1273. {
  1274. capFcb, ItemUlongX // 10
  1275. capFobx, ItemUlongX // 11
  1276. RxContext, ItemUlongX // 12
  1277. Status, ItemUlongX // 13
  1278. }
  1279. #typev MSG_ID_SmbPseExchangeStart_Read 23 "%4!s! PagingIoRead: rxc/offset/length %10!x! %11!x! %12!x! %13!x!"
  1280. {
  1281. RxContext, ItemUlongX // 10
  1282. ByteOffsetAsLI, ItemUlongX // 11
  1283. ThisByteCount, ItemUlongX // 12
  1284. }
  1285. #typev MSG_ID_BuildNtLanmanResponsePrologue 24 "%4!s! BuildNtLanmanResponsePrologue %10!x! %11!x!"
  1286. {
  1287. pSession, ItemUlongX // 10
  1288. Status, ItemUlongX // 11
  1289. }
  1290. #typev MSG_ID_BuildExtendedSessionSetupResponsePrologue 25 "%4!s! BuildExtendedSessionSetupResponsePrologue %10!x! %11!x!"
  1291. {
  1292. pSession, ItemUlongX // 10
  1293. Status, ItemUlongX // 11
  1294. }
  1295. #typev MSG_ID_ValidateServerExtendedSessionSetupResponse 26 "%4!s! ValidateServerExtendedSessionSetupResponse %10!x! %11!x!"
  1296. {
  1297. pSession, ItemUlongX // 10
  1298. Status, ItemUlongX // 11
  1299. }
  1300. #typev MSG_ID_BuildExtendedSessionSetupResponsePrologueFake 27 "%4!s! BuildExtendedSessionSetupResponsePrologueFake %10!x! %11!x!"
  1301. {
  1302. pSession, ItemUlongX // 10
  1303. Status, ItemUlongX // 11
  1304. }
  1305. #typev MSG_ID_SmbCeProbeServers 28 "%4!s! Echo Problem for srvr %10!x! %11!s!"
  1306. {
  1307. pServerEntry, ItemUlongX //10
  1308. Name, ItemPWString //11
  1309. }
  1310. #typev MSG_ID_SmbCeTransportDisconnectIndicated 29 "%4!s! Disc. Indication for srvr %10!x! %11!s!"
  1311. {
  1312. pServerEntry, ItemUlongX //10
  1313. Name, ItemPWString //11
  1314. }
  1315. #typev MSG_ID_SmbCeResumeAllOutstandingRequestsOnError 30 "%4!s! Finalizing scavenged exchange %10!x! Type %11!d!"
  1316. {
  1317. pExchange, ItemUlongX // 10
  1318. Type, ItemUChar // 11
  1319. }
  1320. #typev MSG_ID_SmbCeFinalizeAllExchangesForNetRoot 31 "%4!s! Finalizing scavenged exchange %10!x! Type %11!d!"
  1321. {
  1322. pExchange, ItemUlongX // 10
  1323. Type, ItemUChar // 11
  1324. }
  1325. #typev MSG_ID_SmbCeReceiveInd 32 "%4!s! SmbCeReceiveInd: Invalid Response from %10!x! %11!s!"
  1326. {
  1327. pServerEntry, ItemUlongX //10
  1328. Name, ItemPWString //11
  1329. }
  1330. #typev MSG_ID_SmbCeReceiveIndWithSecuritySignature 33 "%4!s! SmbCeReceiveInd: Invalid Security Signature from %10!x! %11!s!"
  1331. {
  1332. pServerEntry, ItemUlongX //10
  1333. Name, ItemPWString //11
  1334. }
  1335. #typev MSG_ID_SmbCeDataReadyIndWithSecuritySignature 34 "%4!s! SmbCeDataReadyInd: Invalid Security Signature from %10!x! %11!s!"
  1336. {
  1337. pServerEntry, ItemUlongX //10
  1338. Name, ItemPWString //11
  1339. }
  1340. #typev MSG_ID_SmbCeParseSmbHeader 35 "%4!s! Invalid header %10!x! %11!x! RUid %12!x! RTid %13!x! SUid %14!x STid %15!x!"
  1341. {
  1342. pServerEntry, ItemUlongX //10
  1343. pExchange, ItemUlongX //11
  1344. Uid, ItemUShort //12
  1345. Tid, ItemUShort //13
  1346. UserId, ItemUShort //14
  1347. TreeId, ItemUShort //15
  1348. }
  1349. #typev MSG_ID_SmbCeDetectExpiredExchanges 36 "%4!s! Expired Exchange %10!x! %11!x! %12!s!"
  1350. {
  1351. pExchange, ItemUlongX //10
  1352. pServerEntry, ItemUlongX //11
  1353. Name, ItemPWString //12
  1354. }
  1355. #typev MSG_ID_RxMiniSniffer 37 "%4!s! Minisniff (%19!s!) srv %10!x! cmd %11!x! mid %12!x! status %13!x! len %14!x! flg %15!x! flg2 %16!x! xc %17!x! rx %18!x!"
  1356. {
  1357. pServerEntry, ItemUlongX //10
  1358. Command, ItemUChar //11
  1359. Mid, ItemUShort //12
  1360. Status, ItemUlongX //13
  1361. Length, ItemUlongx //14
  1362. Flags, ItemUchar //15
  1363. Flags2, ItemUShort //16
  1364. Exchange, ItemUlongx //17
  1365. RxContext, ItemUlongx //18
  1366. TagString, ItemString //19
  1367. }
  1368. #typev MSG_ID_SmbCeReceiveInd_2 38 "%4!s! OPLOCK Break: FID %10!x! Level %11!x! Server %12!x! %13!s!"
  1369. {
  1370. Fid, ItemUShort //10
  1371. OplockLevel, ItemUChar //11
  1372. pServerEntry, ItemUlongX //12
  1373. Name, ItemPWString //13
  1374. }
  1375. #typev MSG_ID_SmbCeReceiveInd_3 39 "%4!s! SmbCeReceiveInd:No resumption context %10!x! Server %11!x! %12!s!"
  1376. {
  1377. Mid, ItemUShort //10
  1378. pServerEntry, ItemUlongX //11
  1379. Name, ItemPWString //12
  1380. }
  1381. #typev MSG_ID_SmbCeReceiveInd_3 40 "%4!s! @@@@@@ Error Indication %10!x! Server %11!x! %12!s!"
  1382. {
  1383. Status, ItemUlongx //10
  1384. pServerEntry, ItemUlongX //11
  1385. Name, ItemPWString //12
  1386. }
  1387. #typev MSG_ID_MRxSmbSetInitialSMB 41 "%4!s! BuildHdr failed %10!x! %11!x!"
  1388. {
  1389. Exchange, ItemUlongx //10
  1390. Status, ItemUlongX //11
  1391. }
  1392. #typev MSG_ID_SmbTransactExchangeReceive_1 42 "%4!s! XtraBytes %10!x! %11!x!"
  1393. {
  1394. Exchange, ItemUlongx //10
  1395. DeficitBytes, ItemUlongX //11
  1396. }
  1397. #typev MSG_ID_SmbTransactExchangeReceive_2 43 "%4!s! Extra Bytes were sent and copydatasize==%10!x!"
  1398. {
  1399. CopyDataSize, ItemUlongx //10
  1400. }
  1401. #typev MSG_ID_SmbTransactExchangeReceive_3 44 "%4!s! TxErr %10!x! %11!x %12!x!"
  1402. {
  1403. Exchange, ItemUlongx //10
  1404. ParameterBytesSeen, ItemUlongx //11
  1405. DataBytesSeen, ItemUlongx //12
  1406. }
  1407. #typev MSG_ID_SmbTransactExchangeReceive_4 45 "%4!s! TxErrAbandon %10!x! %11!x!"
  1408. {
  1409. pTransactExchange, ItemUlongx //10
  1410. Status, ItemUlongx //11
  1411. }
  1412. #typev MSG_ID_SmbTransactExchangeReceive_5 46 "%4!s! XRtakebytes %10!x! %11!x!"
  1413. {
  1414. pTransactExchange, ItemUlongx //10
  1415. Status, ItemUlongx //11
  1416. }
  1417. #typev MSG_ID_SmbTransactExchangeFinalize 47 "%4!s! SmbTransactExchangeFinalize %10!x!"
  1418. {
  1419. pTransactExchange, ItemUlongx //10
  1420. }
  1421. #typev MSG_ID_SendSecondaryRequests 48 "%4!s! Transact 2nd req %10!x! %11!x! %12!x! %13!x! %14!x! %15!x! %16!x! %17!x!"
  1422. {
  1423. ParamOffset, ItemUlongx //10
  1424. ParamDisplacement, ItemUlongx //11
  1425. TotalParamBytes, ItemUlongx //12
  1426. DataOffset, ItemUlongx //13
  1427. DataDisplacement, ItemUlongx //14
  1428. TotalDataBytes, ItemUlongx //15
  1429. ByteCount, ItemUShort //16
  1430. SmbLength, ItemUlongx //17
  1431. }
  1432. #typev MSG_ID_SmbExtSecuritySessionSetupExchangeStart 49 "%4!s! ExtSecSessSetup %10!x! %11!x!"
  1433. {
  1434. ServerResponseBlob, ItemUlongx //10
  1435. pSessionEntry, ItemUlongx //11
  1436. }
  1437. #typev MSG_ID_MRxSmbCreateVNetRoot 50 "%4!s! SmbCreateVNetRoot CscAgent %10!x! %11!s!"
  1438. {
  1439. fCscAgentOpen, ItemUChar //10
  1440. pNetRootName, ItemPWString //11
  1441. }
  1442. #typev MSG_ID_SmbConstructNetRootExchangeFinalize 51 "%4!s! !Remote Reset %10!x! %11!x! %12!s!"
  1443. {
  1444. NetRootStatus, ItemUlongx //10
  1445. NetRoot, ItemUlongx //11
  1446. pNetRootName, ItemPWString //12
  1447. }
  1448. #typev MSG_ID_MRxSmbInitializeRecurrentServices 52 "%4!s! Tearing down Echo Probe Service %10!x!"
  1449. {
  1450. Status, ItemUlongx //10
  1451. }
  1452. #typev MSG_ID_UninitializeSecurityContextsForSession 53 "%4!s! UninitSecCont %10!x!"
  1453. {
  1454. pSession, ItemUlongx //10
  1455. }
  1456. #typev MSG_ID_DeleteSecurityContextForSession 54 "%4!s! DelSecContext %10!x!"
  1457. {
  1458. pSession, ItemUlongx //10
  1459. }
  1460. #typev MSG_ID_SmbCeFindOrConstructServerEntry_1 55 "%4!s! NewSrvEntry %10!x! %11!s!"
  1461. {
  1462. pServerEntry, ItemUlongx //10
  1463. Name, ItemPWString //11
  1464. }
  1465. #typev MSG_ID_SmbCeFindOrConstructServerEntry_2 56 "%4!s! CachedSrvEntry %10!x! %11!s!"
  1466. {
  1467. pServerEntry, ItemUlongx //10
  1468. Name, ItemPWString //11
  1469. }
  1470. #typev MSG_ID_SmbCeTearDownServerEntry 57 "%4!s! TearSrvEntry %10!x! %11!s!"
  1471. {
  1472. pServerEntry, ItemUlongx //10
  1473. Name, ItemPWString //11
  1474. }
  1475. #typev MSG_ID_SmbCeFindOrConstructSessionEntry_1 58 "%4!s! NewSessEntry %10!x!"
  1476. {
  1477. pSessionEntry, ItemUlongx //10
  1478. }
  1479. #typev MSG_ID_SmbCeFindOrConstructSessionEntry_2 59 "%4!s! CachedSessEntry %10!x!"
  1480. {
  1481. pSessionEntry, ItemUlongx //10
  1482. }
  1483. #typev MSG_ID_SmbCeTearDownSessionEntry 60 "%4!s! TearSessEntry %10!x!"
  1484. {
  1485. pSessionEntry, ItemUlongx //10
  1486. }
  1487. #typev MSG_ID_SmbCeFindOrConstructNetRootEntry_1 61 "%4!s! CachedNREntry %10!x!"
  1488. {
  1489. pNetRootEntry, ItemUlongx //10
  1490. }
  1491. #typev MSG_ID_SmbCeFindOrConstructNetRootEntry_2 62 "%4!s! NewNetREntry %10!x!"
  1492. {
  1493. pNetRootEntry, ItemUlongx //10
  1494. }
  1495. #typev MSG_ID_SmbCeTearDownNetRootEntry 63 "%4!s! TearNetREntry %10!x!"
  1496. {
  1497. pNetRootEntry, ItemUlongx //10
  1498. }
  1499. #typev MSG_ID_SmbCeCancelExchange_1 64 "%4!s! SmbCe Cancel RxContext %10!x!"
  1500. {
  1501. pRxContext, ItemUlongx //10
  1502. }
  1503. #typev MSG_ID_SmbCeCancelExchange_2 65 "%4!s! SmbCeCancel Initiate %10!x!"
  1504. {
  1505. pExchange, ItemUlongx //10
  1506. }
  1507. #typev MSG_ID_SmbCeFindVNetRootContext 66 "%4!s! CachedVNRContext %10!x!"
  1508. {
  1509. pVNetRootContext, ItemUlongx //10
  1510. }
  1511. #typev MSG_ID_SmbCeFindOrConstructVNetRootContext_1 67 "%4!s! ReuseNREntry %10!x!"
  1512. {
  1513. pNetRootEntry, ItemUlongx //10
  1514. }
  1515. #typev MSG_ID_SmbCeFindOrConstructVNetRootContext_2 68 "%4!s! NewVNetRootContext %10!x!"
  1516. {
  1517. pVNetRootContext, ItemUlongx //10
  1518. }
  1519. #typev MSG_ID_SmbCepDereferenceVNetRootContext 69 "%4!s! ScavngVNetRootCntxt %10!x!"
  1520. {
  1521. pVNetRootContext, ItemUlongx //10
  1522. }
  1523. #typev MSG_ID_SmbCeTearDownVNetRootContext 70 "%4!s! TearVNetRootContext %10!x!"
  1524. {
  1525. pVNetRootContext, ItemUlongx //10
  1526. }
  1527. #typev MSG_ID_SmbCeScavengeRelatedContexts 71 "%4!s! Scavctxts Status %10!x! Srv %11!x! %12!s!"
  1528. {
  1529. Status, ItemUlongx //10
  1530. pServerEntry, ItemUlongx //11
  1531. Name, ItemPWString //12
  1532. }
  1533. #typev MSG_ID_MRxSmbWrite 72 "%4!s! Breaking oplock to None in Write SO %10!x!"
  1534. {
  1535. SrvOpen, ItemUlongx //10
  1536. }
  1537. #typev MSG_ID_CscPrepareServerEntryForOnlineOperation_1 73 "%4!s! Transition SE %11!x! fGoAllTheWay=%10!x! %12!s!"
  1538. {
  1539. fGoAllTheWay, ItemUlongx //10
  1540. pServerEntry, ItemUlongx //11
  1541. Name, ItemPWString //12
  1542. }
  1543. #typev MSG_ID_CscPrepareServerEntryForOnlineOperation_2 74 "%4!s! Transition SE %11!x! fGoAllTheWay CscState=%10!x! %12!s!"
  1544. {
  1545. CscState, ItemUlongx //10
  1546. pServerEntry, ItemUlongx //11
  1547. Name, ItemPWString //12
  1548. }
  1549. #typev MSG_ID_CscPrepareServerEntryForOnlineOperation_3 75 "%4!s! Transition SE CO %11!x! fGoAllTheWay=%10!x! %12!s!"
  1550. {
  1551. fGoAllTheWay, ItemUlongx //10
  1552. pServerEntry, ItemUlongx //11
  1553. Name, ItemPWString //12
  1554. }
  1555. #typev MSG_ID_CscTransitionServerToOnline_1 76 "%4!s! Transtioning all servers online %10!x!"
  1556. {
  1557. hShare, ItemUlongx //10
  1558. }
  1559. #typev MSG_ID_CscTransitionServerToOnline_2 77 "%4!s! Transtioning %10!s! online"
  1560. {
  1561. rgSharePath, ItemWString //10
  1562. }
  1563. #typev MSG_ID_CscTransitionServerToOnline_3 78 "%4!s! Go online ServerEntry With DFS name %10!x! %11!s!"
  1564. {
  1565. pServerEntry, ItemUlongx //10
  1566. Name, ItemPWString //11
  1567. }
  1568. #typev MSG_ID_CscpTransitionServerEntryForDisconnectedOperation_1 79 "%4!s! CscTrPSrv IN DFSFlgs %10!x!"
  1569. {
  1570. uFlags, ItemUlongx //10
  1571. }
  1572. #typev MSG_ID_CscpTransitionServerEntryForDisconnectedOperation_2 80 "%4!s! CscTrPSrv Out RemoteStatus=%10!x!"
  1573. {
  1574. RemoteStatus, ItemUlongx //10
  1575. }
  1576. #typev MSG_ID_CscpTransitionServerEntryForDisconnectedOperation_3 81 "%4!s! CscTrPSrv Autodial=%10!x!"
  1577. {
  1578. fInvokeAutoDial, ItemUChar //10
  1579. }
  1580. #typev MSG_ID_CscpTransitionServerEntryForDisconnectedOperation_4 82 "%4!s! Transitioning Server Entry for DC %11!x! Status %10!x! %12!s!"
  1581. {
  1582. Status, ItemUlongx //10
  1583. pServerEntry, ItemUlongx //11
  1584. Name, ItemPWString //12
  1585. }
  1586. #typev MSG_ID_CscpTransitionServerEntryForDisconnectedOperation_5 83 "%4!s! CscTrPSrv ChkAgnt %10!x!"
  1587. {
  1588. CscShareHandle, ItemUlongx //10
  1589. }
  1590. #typev MSG_ID_CscpTransitionServerEntryForDisconnectedOperation_6 84 "%4!s! CscTrPSrv UIretry %10!x!"
  1591. {
  1592. fRetryFromUI, ItemUChar //10
  1593. }
  1594. #typev MSG_ID_CscpTransitionServerEntryForDisconnectedOperation_7 85 "%4!s! CscTrPSrv Out St %10!x!"
  1595. {
  1596. Status, ItemUlongx //10
  1597. }
  1598. #typev MSG_ID_CscIsThisDfsCreateOperationTransitionableForDisconnectedOperation_1 86 "%4!s! CSCTrIsDfs IN %10!x!"
  1599. {
  1600. RxContext, ItemUlongx //10
  1601. }
  1602. #typev MSG_ID_CscIsThisDfsCreateOperationTransitionableForDisconnectedOperation_2 87 "%4!s! CSCTrIsDfs IsDsf %10!x! Type %11!x! Flags %12!x! %13!s!"
  1603. {
  1604. pDfsNameContext, ItemUlongx //10
  1605. NameContextType, ItemUlongx //11
  1606. Flags, ItemUlongx //12
  1607. UNCFileName, ItemPWString //13
  1608. }
  1609. #typev MSG_ID_CscIsThisDfsCreateOperationTransitionableForDisconnectedOperation_3 88 "%4!s! CSCTrDfs Parsed %10!sx!"
  1610. {
  1611. UNCFileName, ItemPWString //10
  1612. }
  1613. #typev MSG_ID_CscIsThisDfsCreateOperationTransitionableForDisconnectedOperation_4 89 "%4!s! CscTrPSrv TrOffl %10!x!"
  1614. {
  1615. TransitionVNetRoot, ItemUChar //10
  1616. }
  1617. #typev MSG_ID_CscIsThisDfsCreateOperationTransitionableForDisconnectedOperation_5 90 "%4!s! CSCTrIsDfs Out %10!x!"
  1618. {
  1619. TransitionVNetRoot, ItemUChar //10
  1620. }
  1621. #typev MSG_ID_CscTransitionVNetRootForDisconnectedOperation_1 91 "%4!s! CSCTrVNR %10!x! VNR"
  1622. {
  1623. pVNetRootContext, ItemUlongx //10
  1624. }
  1625. #typev MSG_ID_CscTransitionVNetRootForDisconnectedOperation_2 92 "%4!s! CSCTrVNR DfsFlgs %10!x!"
  1626. {
  1627. uFlags, ItemUlongx //10
  1628. }
  1629. #typev MSG_ID_CscTransitionVNetRootForDisconnectedOperation_3 93 "%4!s! CSCTrVNR try Tr %10!s!"
  1630. {
  1631. Name, ItemPWString //10
  1632. }
  1633. #typev MSG_ID_CscTransitionServerEntryForDisconnectedOperation_1 94 "%4!s! CSCTrSvr IN %10!x! %11!x! %12!x! %13!x! %14!s!"
  1634. {
  1635. pServerEntry, ItemUlongx //10
  1636. RxContext, ItemUlongx //11
  1637. RemoteStatus, ItemUlongx //12
  1638. AutoDialReq, ItemUChar //13
  1639. Name, ItemPWString //14
  1640. }
  1641. #typev MSG_ID_CscTransitionServerEntryForDisconnectedOperation_2 95 "%4!s! CSCTrSvr DFSFlgs %10!x!"
  1642. {
  1643. uFlags, ItemUlongx //10
  1644. }
  1645. #typev MSG_ID_CscTransitionServerEntryForDisconnectedOperation_3 96 "%4!s! CSCTrSvr Out %10!x!"
  1646. {
  1647. TransitionStatus, ItemUlongx //10
  1648. }
  1649. #typev MSG_ID_MRxSmbCscNotifyChangeDirectory 97 "%4!s! chngnotify fobx=%10!x!"
  1650. {
  1651. capFobx, ItemUlongx //10
  1652. }
  1653. #typev MSG_ID_MRxSmbCscCleanupFobx 98 "%4!s! chngnotify cleanup fobx=%10!x!"
  1654. {
  1655. capFobx, ItemUlongx //10
  1656. }
  1657. #typev MSG_ID_MRxSmbCscCleanupFobx 99 "%4!s! chngnotify cleanup fobx=%10!x!"
  1658. {
  1659. capFobx, ItemUlongx //10
  1660. }
  1661. #typev MSG_ID_BuildNtLanmanResponsePrologue_1 100 "%4!s! NTLMRP AcqCreHdl %10!x! %11!x! %12!s!"
  1662. {
  1663. pSession, ItemUlongx //10
  1664. Status, ItemUlongx //11
  1665. Name, ItemPWString //12
  1666. }
  1667. #typev MSG_ID_BuildNtLanmanResponsePrologue_2 101 "%4!s! NTLMRP IntSecCont %10!x! %11!x! %12!s!"
  1668. {
  1669. pSession, ItemUlongx //10
  1670. Status, ItemUlongx //11
  1671. Name, ItemPWString //12
  1672. }
  1673. #typev MSG_ID_BuildNtLanmanResponsePrologue_3 102 "%4!s! NTLMRP OutToken = NULL %10!x! %11!x! %12!s!"
  1674. {
  1675. pSession, ItemUlongx //10
  1676. Status, ItemUlongx //11
  1677. Name, ItemPWString //12
  1678. }
  1679. #typev MSG_ID_BuildExtendedSessionSetupResponsePrologue_1 103 "%4!s! Kerberos AcqCreHdl %10!x! %11!x! %12!s!"
  1680. {
  1681. pSession, ItemUlongx //10
  1682. Status, ItemUlongx //11
  1683. Name, ItemPWString //12
  1684. }
  1685. #typev MSG_ID_BuildExtendedSessionSetupResponsePrologue_2 104 "%4!s! Kerberos IntSecCont %10!x! %11!x! %12!s!"
  1686. {
  1687. pSession, ItemUlongx //10
  1688. Status, ItemUlongx //11
  1689. Name, ItemPWString //12
  1690. }
  1691. #typev MSG_ID_BuildExtendedSessionSetupResponsePrologue_3 105 "%4!s! Kerberos QuyContAttr %10!x! %11!x! %12!s!"
  1692. {
  1693. pSession, ItemUlongx //10
  1694. Status, ItemUlongx //11
  1695. Name, ItemPWString //12
  1696. }
  1697. #typev MSG_ID_ValidateServerExtendedSessionSetupResponse_1 106 "%4!s! ValidateSrvRsp IntSecCont %10!x! %11!x! %12!s!"
  1698. {
  1699. pSession, ItemUlongx //10
  1700. Status, ItemUlongx //11
  1701. Name, ItemPWString //12
  1702. }
  1703. #typev MSG_ID_ValidateServerExtendedSessionSetupResponse_2 107 "%4!s! ValidateSrvRsp QuyContAttr %10!x! %11!x! %12!s!"
  1704. {
  1705. pSession, ItemUlongx //10
  1706. Status, ItemUlongx //11
  1707. Name, ItemPWString //12
  1708. }
  1709. #typev MSG_ID_BuildExtendedSessionSetupResponsePrologueFake_1 108 "%4!s! TryKerberos AcqCreHdl %10!x! %11!x! %12!s!"
  1710. {
  1711. pSession, ItemUlongx //10
  1712. Status, ItemUlongx //11
  1713. Name, ItemPWString //12
  1714. }
  1715. #typev MSG_ID_BuildExtendedSessionSetupResponsePrologueFake_2 109 "%4!s! TryKerberos IntSecCont %10!x! %11!x! %12!s!"
  1716. {
  1717. pSession, ItemUlongx //10
  1718. Status, ItemUlongx //11
  1719. Name, ItemPWString //12
  1720. }
  1721. #typev MSG_ID_BuildExtendedSessionSetupResponsePrologueFake_3 110 "%4!s! TryKerberos QuyContAttr %10!x! %11!x! %12!s!"
  1722. {
  1723. pSession, ItemUlongx //10
  1724. Status, ItemUlongx //11
  1725. Name, ItemPWString //12
  1726. }
  1727. #typev MSG_ID_BuildExtendedSessionSetupResponsePrologueFake_4 111 "%4!s! Downgrade Attack! %10!x! %11!x! %12!s!"
  1728. {
  1729. pSession, ItemUlongx //10
  1730. Status, ItemUlongx //11
  1731. Name, ItemPWString //12
  1732. }
  1733. #typev MSG_ID_MRxSmbpBindTransportCallback_1 112 "%4!s! Unable to bind Browser with %11!s! %10!x!"
  1734. {
  1735. Status, ItemUlongx //10
  1736. Name, ItemPWString //11
  1737. }
  1738. #typev MSG_ID_MRxSmbpBindTransportCallback_2 113 "%4!s! Unable to associate an address with %11!s! %10!x!"
  1739. {
  1740. Status, ItemUlongx //10
  1741. Name, ItemPWString //11
  1742. }
  1743. #typev MSG_ID_SmbExtSecuritySessionSetupExchangeCopyDataHandler 114 "%4!s! Mapping Incomplete Server Response to Invalid Response %10!x!"
  1744. {
  1745. Exchange, ItemUlongx //10
  1746. }
  1747. #typev MSG_ID_VctpCreateConnectionCallback 115 "%4!s! Fail to create connection %10!x! %11!x! %12!s!"
  1748. {
  1749. Status, ItemUlongx //10
  1750. pServerEntry, ItemUlongx //11
  1751. Name, ItemPWString //12
  1752. }
  1753. #typev MSG_ID_BuildSessionSetupSecurityInformation 116 "%4!s! Build new session %10!x! LUID %11!x! %12!x!"
  1754. {
  1755. pSession, ItemUlongx //10
  1756. LogonIdH, ItemUlongx //11
  1757. LogonIdL, ItemUlongx //12
  1758. }
  1759. #typev MSG_ID_MRxSmbFailingFNext 117 "%4!s! Failing FNext RD_FROM_CACHE :%10!s!:%11!s!: WLD ? RDC ?"
  1760. {
  1761. RxContextName, ItemPWString //10
  1762. UnicodeQueryTemplate, ItemPWString //11
  1763. }
  1764. #typev MSG_ID_MRxSmbFullDirCacheSetup 118 "%4!s! FNext FullDirCache setup :%10!s!:%11!s!:"
  1765. {
  1766. RxContextName, ItemPWString //10
  1767. UnicodeQueryTemplate, ItemPWString //11
  1768. }
  1769. #typev MSG_ID_MRxSmbFullDirCacheElse 119 "%4!s! Else :%10!s!:%11!s!:"
  1770. {
  1771. RxContextName, ItemPWString //10
  1772. UnicodeQueryTemplate, ItemPWString //11
  1773. }
  1774. #typev MSG_ID_MRxSmbFFNonConforming 120 "%4!s! From FF, non conforming"
  1775. {
  1776. }
  1777. #typev MSG_ID_MRxSmbPickingUpFNext 121 "%4!s! Picking up FNext setup:%10!s!:%11!s!:"
  1778. {
  1779. RxContextName, ItemPWString //10
  1780. UnicodeQueryTemplate, ItemPWString //11
  1781. }
  1782. #typev MSG_ID_MRxSmbResettingFNext 122 "%4!s! Resetting FNext setup:%10!s!:%11!s!:"
  1783. {
  1784. RxContextName, ItemPWString //10
  1785. UnicodeQueryTemplate, ItemPWString //11
  1786. }
  1787. #typev MSG_ID_MRxSmbAttemptingCache 123 "%4!s! Trying to Cache %10!s!, Bytes:%11!x!, EOS:?, Files:%13!x!"
  1788. {
  1789. RxContextName, ItemPWString //10
  1790. TotalDataBytesRet, ItemUlongx //11
  1791. FilesReturned, ItemUlongx //13
  1792. }
  1793. #typev MSG_ID_MRxSmbCheckFNOTFFromSFI 124 "%4!s! Check FNOTF from SetFileInfo :%10!s!:"
  1794. {
  1795. RxContextName, ItemPWString //10
  1796. }
  1797. #typev MSG_ID_MRxSmbQPINFSaved 125 "%4!s! Check FNOTF from SetFileInfo :%10!s!:"
  1798. {
  1799. RemainingName, ItemPWString //10
  1800. }
  1801. #typev MSG_ID_MRxSmbQueryBasicInfoSaved 126 "%4!s! QueryBasicInfo to Server Saved :%10!s!:"
  1802. {
  1803. RemainingName, ItemPWString //10
  1804. }
  1805. #typev MSG_ID_MRxSmbTrounceSetFileInfo 127 "%4!s! TROUNCE from SetFileInfo"
  1806. {
  1807. }
  1808. #typev MSG_ID_MRxSmbTrounceCreate 128 "%4!s! TROUNCE from Create"
  1809. {
  1810. }
  1811. #typev MSG_ID_MRxSmbServerOpenSaved 129 "%4!s! Open to Server Saved :%10!s!:"
  1812. {
  1813. RemainingName, ItemPWString //10
  1814. }
  1815. #typev MSG_ID_MRxSmbTrounceSentDispose 130 "%4!s! TROUNCE from Sent Dispose Info"
  1816. {
  1817. }
  1818. #typev MSG_ID_MRxSmbReactivatingCache 131 "%4!s! Cache Found, Reactivating... :%10!s!: size %11!x!"
  1819. {
  1820. OriginalFileName, ItemPWString //10
  1821. Length, ItemUlongx //11
  1822. }
  1823. #typev MSG_ID_MRxSmbCached 132 "%4!s! Cached :%10!s!: StrLen %11!x!, BufA ??, Buf0 ??, Contents %12!x!, Length %13!x!"
  1824. {
  1825. OriginalFileName, ItemPWString //10
  1826. OriginalFileNameLen, ItemUlongx //11
  1827. Contents, ItemUlongx //12
  1828. Length, ItemUlongx //13
  1829. }
  1830. #typev MSG_ID_MRxSmbCachedFullDir 133 "%4!s! Cached Full Dir :%10!s!: size %11!x!"
  1831. {
  1832. OriginalFileName, ItemPWString //10
  1833. Length, ItemUlongx //11
  1834. }
  1835. #typev MSG_ID_MRxSmbInvalidateFullDir 134 "%4!s! Invalidate Full Dir :%10!s!:"
  1836. {
  1837. OriginalFileName, ItemPWString //10
  1838. }
  1839. #typev MSG_ID_MRxSmbFoundInFDC 135 "%4!s! Found :%10!s!: in FullDirCache"
  1840. {
  1841. OriginalFileName, ItemPWString //10
  1842. }
  1843. #typev MSG_ID_MRxSmbInvParentCache 136 "%4!s! Inv Parent Cache :%10!s!:%11!s!: %12!x! %13!x!"
  1844. {
  1845. OriginalFileName, ItemPWString //10
  1846. ParentDir, ItemPWString //11
  1847. CharFlags, ItemUlongx //12
  1848. InhibitMask, ItemUlongx //13
  1849. }
  1850. #typev MSG_ID_MRxSmbExpireCache 137 "%4!s! Expire Cache %10!x! Num Inv %11!x!"
  1851. {
  1852. CharFlags, ItemUlongx //10
  1853. CharInvalidates, ItemUlongx //11
  1854. }
  1855. #typev MSG_ID_MRxSmbInvalidateRenameParentCache 138 "%4!s! Inv Rename Parent Cache :%10!s!:%11!s!: %12!x! %13!x!"
  1856. {
  1857. RenameDir, ItemPWString //10
  1858. ParentDir, ItemPWString //11
  1859. CharFlags, ItemUlongx //12
  1860. InhibitMask, ItemUlongx //13
  1861. }
  1862. #typev MSG_ID_MRxSmbFoundInFDC2 139 "%4!s! Found in FullDirCache :%10!s!: :%11!s!:"
  1863. {
  1864. OriginalFileName, ItemPWString //10
  1865. TargetDirPrefix, ItemPWString //11
  1866. }
  1867. #typev MSG_ID_MRxSmbCacheBlown 140 "%4!s! --------- Cache blown :%10!s!: %11!x! Inb Mask %12!x!"
  1868. {
  1869. OriginalFileName, ItemPWString //10
  1870. CharFlags, ItemUlongx //11
  1871. InhibitMask, ItemUlongx //12
  1872. }
  1873. #typev MSG_ID_MRxSmbInvalidateFullDirCacheFromEa 141 "%4!s! TROUNCE from Ea"
  1874. {
  1875. }