home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 April / Chip_2002-04_cd1.bin / zkuste / delphi / kolekce / d56 / NT.ZIP / NTTools61.dpk < prev    next >
Text File  |  2002-01-20  |  3KB  |  111 lines

  1. package NTTools61;
  2.  
  3. {$R *.res}
  4. {$R 'NTWksUserSetInfo.dcr'}
  5. {$R 'NTAddGlobalGroup.dcr'}
  6. {$R 'NTAddGlobalUser.dcr'}
  7. {$R 'NTAddLocalGroup.dcr'}
  8. {$R 'NTAddUser.dcr'}
  9. {$R 'NTAllAccess.dcr'}
  10. {$R 'NTChangePassword.dcr'}
  11. {$R 'NTComputerName.dcr'}
  12. {$R 'NTConnectDlg.dcr'}
  13. {$R 'NTDelGlobalGroup.dcr'}
  14. {$R 'NTDelGlobalUser.dcr'}
  15. {$R 'NTDelLocalGroup.dcr'}
  16. {$R 'NTDelUser.dcr'}
  17. {$R 'NTDisconnectDlg.dcr'}
  18. {$R 'NTGetUserDomain.dcr'}
  19. {$R 'NTGetUserInfo.dcr'}
  20. {$R 'NTGlobalGetInfo.dcr'}
  21. {$R 'NTGlobalSetInfo.dcr'}
  22. {$R 'NTImpersonateUser.dcr'}
  23. {$R 'NTLocalGetInfo.dcr'}
  24. {$R 'NTLocalSetInfo.dcr'}
  25. {$R 'NTLogon.dcr'}
  26. {$R 'NTRegisterEventSource.dcr'}
  27. {$R 'NTReportEvent.dcr'}
  28. {$R 'NTServerGetInfo.dcr'}
  29. {$R 'NTServerSetInfo.dcr'}
  30. {$R 'NTSetComputerName.dcr'}
  31. {$R 'NTSetUserInfo.dcr'}
  32. {$R 'NTShutdown.dcr'}
  33. {$R 'NTUserModalGet.dcr'}
  34. {$R 'NTUserModalSet.dcr'}
  35. {$R 'NTUserName.dcr'}
  36. {$R 'NTWksGetInfo.dcr'}
  37. {$R 'NTWksSetInfo.dcr'}
  38. {$R 'NTWksUserGetInfo.dcr'}
  39. {$R 'NTGetFileOwner.dcr'}
  40. {$R 'NTFileSecurity.dcr'}
  41. {$ALIGN 8}
  42. {$ASSERTIONS ON}
  43. {$BOOLEVAL OFF}
  44. {$DEBUGINFO ON}
  45. {$EXTENDEDSYNTAX ON}
  46. {$IMPORTEDDATA ON}
  47. {$IOCHECKS ON}
  48. {$LOCALSYMBOLS ON}
  49. {$LONGSTRINGS ON}
  50. {$OPENSTRINGS ON}
  51. {$OPTIMIZATION ON}
  52. {$OVERFLOWCHECKS OFF}
  53. {$RANGECHECKS OFF}
  54. {$REFERENCEINFO ON}
  55. {$SAFEDIVIDE OFF}
  56. {$STACKFRAMES OFF}
  57. {$TYPEDADDRESS OFF}
  58. {$VARSTRINGCHECKS ON}
  59. {$WRITEABLECONST OFF}
  60. {$MINENUMSIZE 1}
  61. {$IMAGEBASE $400000}
  62. {$DESCRIPTION 'NTTools 6.1'}
  63. {$IMPLICITBUILD OFF}
  64.  
  65. requires
  66.   rtl,
  67.   vcl;
  68.  
  69. contains
  70.   NTWksUserSetInfo in 'NTWksUserSetInfo.pas',
  71.   NTAddGlobalGroup in 'NTAddGlobalGroup.pas',
  72.   NTAddGlobalUser in 'NTAddGlobalUser.pas',
  73.   NTAddLocalGroup in 'NTAddLocalGroup.pas',
  74.   NTAddUser in 'NTAddUser.pas',
  75.   NTAllAccess in 'NTAllAccess.pas',
  76.   NTChangePassword in 'NTChangePassword.pas',
  77.   NTComputerName in 'NTComputerName.pas',
  78.   NTConnectDlg in 'NTConnectDlg.pas',
  79.   NTDelGlobalGroup in 'NTDelGlobalGroup.pas',
  80.   NTDelGlobalUser in 'NTDelGlobalUser.pas',
  81.   NTDelLocalGroup in 'NTDelLocalGroup.pas',
  82.   NTDelUser in 'NTDelUser.pas',
  83.   NTDisconnectDlg in 'NTDisconnectDlg.pas',
  84.   NTGetUserDomain in 'NTGetUserDomain.pas',
  85.   NTGetUserInfo in 'NTGetUserInfo.pas',
  86.   NTGlobalGetInfo in 'NTGlobalGetInfo.pas',
  87.   NTGlobalSetInfo in 'NTGlobalSetInfo.pas',
  88.   NTImpersonateUser in 'NTImpersonateUser.pas',
  89.   NTLocalGetInfo in 'NTLocalGetInfo.pas',
  90.   NTLocalSetInfo in 'NTLocalSetInfo.pas',
  91.   NTLogon in 'NTLogon.pas',
  92.   NTRegisterEventSource in 'NTRegisterEventSource.pas',
  93.   NTReportEvent in 'NTReportEvent.pas',
  94.   NTSecurityDecls in 'NTSecurityDecls.pas',
  95.   NTServerGetInfo in 'NTServerGetInfo.pas',
  96.   NTServerSetInfo in 'NTServerSetInfo.pas',
  97.   NTSetComputerName in 'NTSetComputerName.pas',
  98.   NTSetUserInfo in 'NTSetUserInfo.pas',
  99.   NTShutdown in 'NTShutdown.pas',
  100.   NTTools in 'NTTools.pas',
  101.   NTUserModalGet in 'NTUserModalGet.pas',
  102.   NTUserModalSet in 'NTUserModalSet.pas',
  103.   NTUserName in 'NTUserName.pas',
  104.   NTWksGetInfo in 'NTWksGetInfo.pas',
  105.   NTWksSetInfo in 'NTWksSetInfo.pas',
  106.   NTWksUserGetInfo in 'NTWksUserGetInfo.pas',
  107.   NTGetFileOwner in 'NTGetFileOwner.pas',
  108.   NTFileSecurity in 'NTFileSecurity.pas';
  109.  
  110. end.
  111.