netbios_defs.h 1.2 KB

1234567891011121314151617181920212223242526272829
  1. //---------------------------------------------------------------------------
  2. // __________________ _________ _____ _____ .__ ._.
  3. // \______ \______ \ / _____/ / \ / _ \ |__| ____ | |
  4. // | | _/| | \ \_____ \ / \ / \ / /_\ \| _/ __ \ | |
  5. // | | \| ` \/ / Y \ / | | \ ___/ \|
  6. // |______ /_______ /_______ \____|__ / /\ \____|__ |__|\___ | __
  7. // \/ \/ \/ \/ )/ \/ \/ \/
  8. //
  9. // This file is part of libdsm. Copyright © 2014 VideoLabs SAS
  10. //
  11. // Author: Julien 'Lta' BALLET <contact@lta.io>
  12. //
  13. // This program is free software. It comes without any warranty, to the extent
  14. // permitted by applicable law. You can redistribute it and/or modify it under
  15. // the terms of the Do What The Fuck You Want To Public License, Version 2, as
  16. // published by Sam Hocevar. See the COPYING file for more details.
  17. //----------------------------------------------------------------------------
  18. #ifndef _BDSM_NETBIOS_DEFS_H_
  19. #define _BDSM_NETBIOS_DEFS_H_
  20. // Netbios name types
  21. #define NETBIOS_WORKSTATION 0x00
  22. #define NETBIOS_MESSENGER 0x03
  23. #define NETBIOS_FILESERVER 0x20
  24. #define NETBIOS_DOMAINMASTER 0x1b
  25. #endif