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.

512 lines
8.2 KiB

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. dslookup.c
  5. Abstract:
  6. Implementation of server side RPC notify routines
  7. Author:
  8. Mac McLain (MacM) May 17, 1998
  9. Environment:
  10. User Mode
  11. Revision History:
  12. --*/
  13. #include <lsapch2.h>
  14. #include <dbp.h>
  15. VOID
  16. LsapServerRpcThreadReturnNotify(
  17. LPWSTR CallingFunction
  18. );
  19. VOID
  20. LsarClose_notify(
  21. VOID
  22. )
  23. {
  24. LsapServerRpcThreadReturnNotify( L"LsarClose" );
  25. }
  26. VOID
  27. LsarDelete_notify (
  28. VOID
  29. )
  30. {
  31. LsapServerRpcThreadReturnNotify( L"LsarDelete" );
  32. }
  33. VOID
  34. LsarEnumeratePrivileges_notify (
  35. VOID
  36. )
  37. {
  38. LsapServerRpcThreadReturnNotify( L"LsarEnumeratePrivileges" );
  39. }
  40. VOID
  41. LsarQuerySecurityObject_notify (
  42. VOID
  43. )
  44. {
  45. LsapServerRpcThreadReturnNotify( L"LsarQuerySecurityObject" );
  46. }
  47. VOID
  48. LsarSetSecurityObject_notify (
  49. VOID
  50. )
  51. {
  52. LsapServerRpcThreadReturnNotify( L"LsarEnumerateTrustedDomainsEx" );
  53. }
  54. VOID
  55. LsarChangePassword_notify (
  56. VOID
  57. )
  58. {
  59. LsapServerRpcThreadReturnNotify( L"LsarChangePassword" );
  60. }
  61. VOID
  62. LsarOpenPolicy_notify (
  63. VOID
  64. )
  65. {
  66. LsapServerRpcThreadReturnNotify( L"LsarOpenPolicy" );
  67. }
  68. VOID
  69. LsarQueryInformationPolicy_notify (
  70. VOID
  71. )
  72. {
  73. LsapServerRpcThreadReturnNotify( L"LsarQueryInformationPolicy" );
  74. }
  75. VOID
  76. LsarSetInformationPolicy_notify (
  77. VOID
  78. )
  79. {
  80. LsapServerRpcThreadReturnNotify( L"LsarSetInformationPolicy" );
  81. }
  82. VOID
  83. LsarClearAuditLog_notify (
  84. VOID
  85. )
  86. {
  87. LsapServerRpcThreadReturnNotify( L"LsarClearAuditLog" );
  88. }
  89. VOID
  90. LsarCreateAccount_notify (
  91. VOID
  92. )
  93. {
  94. LsapServerRpcThreadReturnNotify( L"LsarCreateAccount" );
  95. }
  96. VOID
  97. LsarEnumerateAccounts_notify (
  98. VOID
  99. )
  100. {
  101. LsapServerRpcThreadReturnNotify( L"LsarEnumerateAccounts" );
  102. }
  103. VOID
  104. LsarCreateTrustedDomain_notify (
  105. VOID
  106. )
  107. {
  108. LsapServerRpcThreadReturnNotify( L"LsarCreateTrustedDomain" );
  109. }
  110. VOID
  111. LsarEnumerateTrustedDomains_notify (
  112. VOID
  113. )
  114. {
  115. LsapServerRpcThreadReturnNotify( L"LsarEnumerateTrustedDomains" );
  116. }
  117. VOID
  118. LsarLookupNames_notify (
  119. VOID
  120. )
  121. {
  122. LsapServerRpcThreadReturnNotify( L"LsarLookupNames" );
  123. }
  124. VOID
  125. LsarLookupSids_notify (
  126. VOID
  127. )
  128. {
  129. LsapServerRpcThreadReturnNotify( L"LsarLookupSids" );
  130. }
  131. VOID
  132. LsarCreateSecret_notify (
  133. VOID
  134. )
  135. {
  136. LsapServerRpcThreadReturnNotify( L"LsarCreateSecret" );
  137. }
  138. VOID
  139. LsarOpenAccount_notify (
  140. VOID
  141. )
  142. {
  143. LsapServerRpcThreadReturnNotify( L"LsarOpenAccount" );
  144. }
  145. VOID
  146. LsarEnumeratePrivilegesAccount_notify (
  147. VOID
  148. )
  149. {
  150. LsapServerRpcThreadReturnNotify( L"LsarEnumeratePrivilegesAccount" );
  151. }
  152. VOID
  153. LsarAddPrivilegesToAccount_notify (
  154. VOID
  155. )
  156. {
  157. LsapServerRpcThreadReturnNotify( L"LsarAddPrivilegesToAccount" );
  158. }
  159. VOID
  160. LsarRemovePrivilegesFromAccount_notify (
  161. VOID
  162. )
  163. {
  164. LsapServerRpcThreadReturnNotify( L"LsarRemovePrivilegesFromAccount" );
  165. }
  166. VOID
  167. LsarGetQuotasForAccount_notify (
  168. VOID
  169. )
  170. {
  171. LsapServerRpcThreadReturnNotify( L"LsarGetQuotasForAccount" );
  172. }
  173. VOID
  174. LsarSetQuotasForAccount_notify (
  175. VOID
  176. )
  177. {
  178. LsapServerRpcThreadReturnNotify( L"LsarSetQuotasForAccount" );
  179. }
  180. VOID
  181. LsarGetSystemAccessAccount_notify (
  182. VOID
  183. )
  184. {
  185. LsapServerRpcThreadReturnNotify( L"LsarGetSystemAccessAccount" );
  186. }
  187. VOID
  188. LsarSetSystemAccessAccount_notify (
  189. VOID
  190. )
  191. {
  192. LsapServerRpcThreadReturnNotify( L"LsarSetSystemAccessAccount" );
  193. }
  194. VOID
  195. LsarOpenTrustedDomain_notify (
  196. VOID
  197. )
  198. {
  199. LsapServerRpcThreadReturnNotify( L"LsarOpenTrustedDomain" );
  200. }
  201. VOID
  202. LsarQueryInfoTrustedDomain_notify (
  203. VOID
  204. )
  205. {
  206. LsapServerRpcThreadReturnNotify( L"LsarQueryInfoTrustedDomain" );
  207. }
  208. VOID
  209. LsarSetInformationTrustedDomain_notify (
  210. VOID
  211. )
  212. {
  213. LsapServerRpcThreadReturnNotify( L"LsarSetInformationTrustedDomain" );
  214. }
  215. VOID
  216. LsarOpenSecret_notify (
  217. VOID
  218. )
  219. {
  220. LsapServerRpcThreadReturnNotify( L"LsarOpenSecret" );
  221. }
  222. VOID
  223. LsarSetSecret_notify (
  224. VOID
  225. )
  226. {
  227. LsapServerRpcThreadReturnNotify( L"LsarSetSecret" );
  228. }
  229. VOID
  230. LsarQuerySecret_notify (
  231. VOID
  232. )
  233. {
  234. LsapServerRpcThreadReturnNotify( L"LsarQuerySecret" );
  235. }
  236. VOID
  237. LsarLookupPrivilegeValue_notify (
  238. VOID
  239. )
  240. {
  241. LsapServerRpcThreadReturnNotify( L"LsarLookupPrivilegeValue" );
  242. }
  243. VOID
  244. LsarLookupPrivilegeName_notify (
  245. VOID
  246. )
  247. {
  248. LsapServerRpcThreadReturnNotify( L"LsarLookupPrivilegeName" );
  249. }
  250. VOID
  251. LsarLookupPrivilegeDisplayName_notify (
  252. VOID
  253. )
  254. {
  255. LsapServerRpcThreadReturnNotify( L"LsarLookupPrivilegeDisplayName" );
  256. }
  257. VOID
  258. LsarDeleteObject_notify (
  259. VOID
  260. )
  261. {
  262. LsapServerRpcThreadReturnNotify( L"LsarDeleteObject" );
  263. }
  264. VOID
  265. LsarEnumerateAccountsWithUserRight_notify (
  266. VOID
  267. )
  268. {
  269. LsapServerRpcThreadReturnNotify( L"LsarEnumerateAccountsWithUserRight" );
  270. }
  271. VOID
  272. LsarEnumerateAccountRights_notify (
  273. VOID
  274. )
  275. {
  276. LsapServerRpcThreadReturnNotify( L"LsarEnumerateAccountRights" );
  277. }
  278. VOID
  279. LsarAddAccountRights_notify (
  280. VOID
  281. )
  282. {
  283. LsapServerRpcThreadReturnNotify( L"LsarAddAccountRights" );
  284. }
  285. VOID
  286. LsarRemoveAccountRights_notify (
  287. VOID
  288. )
  289. {
  290. LsapServerRpcThreadReturnNotify( L"LsarRemoveAccountRights" );
  291. }
  292. VOID
  293. LsarQueryTrustedDomainInfo_notify (
  294. VOID
  295. )
  296. {
  297. LsapServerRpcThreadReturnNotify( L"LsarQueryTrustedDomainInfo" );
  298. }
  299. VOID
  300. LsarSetTrustedDomainInfo_notify (
  301. VOID
  302. )
  303. {
  304. LsapServerRpcThreadReturnNotify( L"LsarSetTrustedDomainInfo" );
  305. }
  306. VOID
  307. LsarDeleteTrustedDomain_notify (
  308. VOID
  309. )
  310. {
  311. LsapServerRpcThreadReturnNotify( L"LsarDeleteTrustedDomain" );
  312. }
  313. VOID
  314. LsarStorePrivateData_notify (
  315. VOID
  316. )
  317. {
  318. LsapServerRpcThreadReturnNotify( L"LsarStorePrivateData" );
  319. }
  320. VOID
  321. LsarRetrievePrivateData_notify (
  322. VOID
  323. )
  324. {
  325. LsapServerRpcThreadReturnNotify( L"LsarRetrievePrivateData" );
  326. }
  327. VOID
  328. LsarOpenPolicy2_notify (
  329. VOID
  330. )
  331. {
  332. LsapServerRpcThreadReturnNotify( L"LsarOpenPolicy2" );
  333. }
  334. VOID
  335. LsarOpenPolicySce_notify (
  336. VOID
  337. )
  338. {
  339. LsapServerRpcThreadReturnNotify( L"LsarOpenPolicySce" );
  340. }
  341. VOID
  342. LsarGetUserName_notify (
  343. VOID
  344. )
  345. {
  346. LsapServerRpcThreadReturnNotify( L"LsarGetUserName" );
  347. }
  348. VOID
  349. LsarQueryInformationPolicy2_notify (
  350. VOID
  351. )
  352. {
  353. LsapServerRpcThreadReturnNotify( L"LsarQueryInformationPolicy2" );
  354. }
  355. VOID
  356. LsarSetInformationPolicy2_notify (
  357. VOID
  358. )
  359. {
  360. LsapServerRpcThreadReturnNotify( L"LsarSetInformationPolicy2" );
  361. }
  362. VOID
  363. LsarQueryTrustedDomainInfoByName_notify (
  364. VOID
  365. )
  366. {
  367. LsapServerRpcThreadReturnNotify( L"LsarQueryTrustedDomainInfoByName" );
  368. }
  369. VOID
  370. LsarSetTrustedDomainInfoByName_notify (
  371. VOID
  372. )
  373. {
  374. LsapServerRpcThreadReturnNotify( L"LsarSetTrustedDomainInfoByName" );
  375. }
  376. VOID
  377. LsarEnumerateTrustedDomainsEx_notify (
  378. VOID
  379. )
  380. {
  381. LsapServerRpcThreadReturnNotify( L"LsarEnumerateTrustedDomainsEx" );
  382. }
  383. VOID
  384. LsarCreateTrustedDomainEx_notify (
  385. VOID
  386. )
  387. {
  388. LsapServerRpcThreadReturnNotify( L"LsarCreateTrustedDomainEx" );
  389. }
  390. VOID
  391. LsarQueryDomainInformationPolicy_notify (
  392. VOID
  393. )
  394. {
  395. LsapServerRpcThreadReturnNotify( L"LsarQueryDomainInformationPolicy" );
  396. }
  397. VOID
  398. LsarSetDomainInformationPolicy_notify (
  399. VOID
  400. )
  401. {
  402. LsapServerRpcThreadReturnNotify( L"LsarSetDomainInformationPolicy" );
  403. }
  404. VOID
  405. LsarOpenTrustedDomainByName_notify (
  406. VOID
  407. )
  408. {
  409. LsapServerRpcThreadReturnNotify( L"LsarOpenTrustedDomainByName" );
  410. }
  411. VOID
  412. LsarSetPolicyReplicationHandle_notify (
  413. VOID
  414. )
  415. {
  416. LsapServerRpcThreadReturnNotify( L"LsarSetPolicyReplicationHandle" );
  417. }
  418. VOID
  419. LsarLookupNames3_notify (
  420. VOID
  421. )
  422. {
  423. LsapServerRpcThreadReturnNotify( L"LsarLookupNames3" );
  424. }
  425. VOID
  426. LsarQueryForestTrustInformation_notify (
  427. VOID
  428. )
  429. {
  430. LsapServerRpcThreadReturnNotify( L"LsarQueryForestTrustInformation" );
  431. }
  432. VOID
  433. LsarSetForestTrustInformation_notify (
  434. VOID
  435. )
  436. {
  437. LsapServerRpcThreadReturnNotify( L"LsarSetForestTrustInformation" );
  438. }