mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +00:00
[9620] Resolve linking problems for script DLLs
This commit is contained in:
parent
4be91fa97a
commit
c3e07a443d
7 changed files with 13 additions and 18 deletions
|
|
@ -114,7 +114,7 @@ struct PackedGuidReader
|
|||
ObjectGuid* m_guidPtr;
|
||||
};
|
||||
|
||||
class ObjectGuid
|
||||
class MANGOS_DLL_SPEC ObjectGuid
|
||||
{
|
||||
public: // constructors
|
||||
ObjectGuid() : m_guid(0) {}
|
||||
|
|
@ -122,9 +122,6 @@ class ObjectGuid
|
|||
ObjectGuid(HighGuid hi, uint32 entry, uint32 counter) : m_guid(uint64(counter) | (uint64(entry) << 24) | (uint64(hi) << 48)) {}
|
||||
ObjectGuid(HighGuid hi, uint32 counter) : m_guid(uint64(counter) | (uint64(hi) << 48)) {}
|
||||
|
||||
public: // statics
|
||||
static ObjectGuid const EmptyGuid;
|
||||
|
||||
public: // modifiers
|
||||
PackedGuidReader ReadAsPacked() { return PackedGuidReader(*this); }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue