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.

21 lines
615 B

  1. //
  2. // This define gives the default Object directory
  3. // that we should use to insert the symbolic links
  4. // between the NT device name and namespace used by
  5. // that object directory.
  6. #define DEFAULT_DIRECTORY L"DosDevices"
  7. //
  8. // For the above directory, the AsyncMAC driver will
  9. // use the following name as the suffix of the AsyncMAC
  10. // driver for that directory. It will NOT append
  11. // a number onto the end of the name.
  12. #define DEFAULT_ASYNCMAC_NAME L"ASYNCMAC"
  13. // define some globals
  14. UNICODE_STRING ObjectDirectory;
  15. UNICODE_STRING SymbolicLinkName;
  16. BOOLEAN CreatedSymbolicLink=FALSE;