1234567891011121314151617181920212223242526272829303132333435 |
- //---------------------------------------------------------------------------
- // __________________ _________ _____ _____ .__ ._.
- // \______ \______ \ / _____/ / \ / _ \ |__| ____ | |
- // | | _/| | \ \_____ \ / \ / \ / /_\ \| _/ __ \ | |
- // | | \| ` \/ / Y \ / | | \ ___/ \|
- // |______ /_______ /_______ \____|__ / /\ \____|__ |__|\___ | __
- // \/ \/ \/ \/ )/ \/ \/ \/
- //
- // This file is part of libdsm. Copyright © 2014 VideoLabs SAS
- //
- // Author: Julien 'Lta' BALLET <contact@lta.io>
- //
- // This program is free software. It comes without any warranty, to the extent
- // permitted by applicable law. You can redistribute it and/or modify it under
- // the terms of the Do What The Fuck You Want To Public License, Version 2, as
- // published by Sam Hocevar. See the COPYING file for more details.
- //----------------------------------------------------------------------------
- #ifndef __BDSM_H_
- #define __BDSM_H_
- #define BDSM_VERSION_CURRENT 0
- #define BDSM_VERSION_REVISION 0
- #define BDSM_VERSION_AGE 0
- #include "bdsm/context.h"
- #include "bdsm/netbios_utils.h"
- #include "bdsm/netbios_session.h"
- #include "bdsm/smb_session.h"
- #include "bdsm/smb_ntlm.h"
- #include "bdsm/smb_share.h"
- #include "bdsm/smb_file.h"
- #endif
|