mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
Initial Mangos Three Commit
This commit is contained in:
parent
bb91aa5933
commit
7665a09232
2444 changed files with 625144 additions and 0 deletions
48
dep/acelite/ace/Shared_Object.cpp
Normal file
48
dep/acelite/ace/Shared_Object.cpp
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
#include "ace/Shared_Object.h"
|
||||
#include "ace/Global_Macros.h"
|
||||
#include "ace/config-all.h"
|
||||
|
||||
/* Provide the abstract base class used to access dynamic linking
|
||||
facilities */
|
||||
|
||||
#if !defined (__ACE_INLINE__)
|
||||
#include "ace/Shared_Object.inl"
|
||||
#endif /* __ACE_INLINE__ */
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
// Initializes object when dynamic linking occurs.
|
||||
|
||||
int
|
||||
ACE_Shared_Object::init (int, ACE_TCHAR *[])
|
||||
{
|
||||
ACE_TRACE ("ACE_Shared_Object::init");
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Terminates object when dynamic unlinking occurs.
|
||||
|
||||
int
|
||||
ACE_Shared_Object::fini (void)
|
||||
{
|
||||
ACE_TRACE ("ACE_Shared_Object::fini");
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Returns information on active object.
|
||||
|
||||
int
|
||||
ACE_Shared_Object::info (ACE_TCHAR **, size_t) const
|
||||
{
|
||||
ACE_TRACE ("ACE_Shared_Object::info");
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Need to give a default implementation.
|
||||
|
||||
ACE_Shared_Object::~ACE_Shared_Object (void)
|
||||
{
|
||||
ACE_TRACE ("ACE_Shared_Object::~ACE_Shared_Object");
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
Loading…
Add table
Add a link
Reference in a new issue