changed to new dll naming scheme

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1784 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
Trass3r 2011-01-30 18:09:15 +00:00
parent f7427fe167
commit 1b0bdfe7de
16 changed files with 39 additions and 48 deletions

View file

@ -182,7 +182,7 @@ class Ftp : DSFMLObject
}
static this()
{
DllLoader dll = DllLoader.load("csfml-network");
DllLoader dll = DllLoader.load("csfml-network-2");
sfFtpResponse_Destroy = cast(pf_sfFtpResponse_Destroy)dll.getSymbol("sfFtpResponse_Destroy");
sfFtpResponse_IsOk = cast(pf_sfFtpResponse_IsOk)dll.getSymbol("sfFtpResponse_IsOk");
@ -229,7 +229,7 @@ class Ftp : DSFMLObject
}
static this()
{
DllLoader dll = DllLoader.load("csfml-network");
DllLoader dll = DllLoader.load("csfml-network-2");
sfFtpDirectoryResponse_Destroy = cast(pf_sfFtpDirectoryResponse_Destroy)dll.getSymbol("sfFtpDirectoryResponse_Destroy");
sfFtpDirectoryResponse_GetDirectory = cast(pf_sfFtpDirectoryResponse_GetDirectory)dll.getSymbol("sfFtpDirectoryResponse_GetDirectory");
@ -309,7 +309,7 @@ class Ftp : DSFMLObject
}
static this()
{
DllLoader dll = DllLoader.load("csfml-network");
DllLoader dll = DllLoader.load("csfml-network-2");
sfFtpListingResponse_Destroy = cast(pf_sfFtpListingResponse_Destroy)dll.getSymbol("sfFtpListingResponse_Destroy");
sfFtpListingResponse_GetCount = cast(pf_sfFtpListingResponse_GetCount)dll.getSymbol("sfFtpListingResponse_GetCount");
@ -577,9 +577,9 @@ private:
static this()
{
debug
DllLoader dll = DllLoader.load("csfml-network-d");
DllLoader dll = DllLoader.load("csfml-network-d-2");
else
DllLoader dll = DllLoader.load("csfml-network");
DllLoader dll = DllLoader.load("csfml-network-2");
sfFtp_Create = cast(pf_sfFtp_Create)dll.getSymbol("sfFtp_Create");
sfFtp_Destroy = cast(pf_sfFtp_Destroy)dll.getSymbol("sfFtp_Destroy");

View file

@ -178,7 +178,7 @@ class Http : DSFMLObject
static this()
{
DllLoader dll = DllLoader.load("csfml-network");
DllLoader dll = DllLoader.load("csfml-network-2");
sfHttpResponse_Destroy = cast(pf_sfHttpResponse_Destroy)dll.getSymbol("sfHttpResponse_Destroy");
sfHttpResponse_GetField = cast(pf_sfHttpResponse_GetField)dll.getSymbol("sfHttpResponse_GetField");
@ -295,7 +295,7 @@ class Http : DSFMLObject
static this()
{
DllLoader dll = DllLoader.load("csfml-network");
DllLoader dll = DllLoader.load("csfml-network-2");
sfHttpRequest_Create = cast(pf_sfHttpRequest_Create)dll.getSymbol("sfHttpRequest_Create");
sfHttpRequest_Destroy = cast(pf_sfHttpRequest_Destroy)dll.getSymbol("sfHttpRequest_Destroy");
@ -386,9 +386,9 @@ private:
static this()
{
debug
DllLoader dll = DllLoader.load("csfml-network-d");
DllLoader dll = DllLoader.load("csfml-network-d-2");
else
DllLoader dll = DllLoader.load("csfml-network");
DllLoader dll = DllLoader.load("csfml-network-2");
sfHttp_Create = cast(pf_sfHttp_Create)dll.getSymbol("sfHttp_Create");
sfHttp_Destroy = cast(pf_sfHttp_Destroy)dll.getSymbol("sfHttp_Destroy");

View file

@ -381,9 +381,9 @@ private:
static this()
{
debug
DllLoader dll = DllLoader.load("csfml-network-d");
DllLoader dll = DllLoader.load("csfml-network-d-2");
else
DllLoader dll = DllLoader.load("csfml-network");
DllLoader dll = DllLoader.load("csfml-network-2");
sfPacket_Append = cast(pf_sfPacket_Append)dll.getSymbol("sfPacket_Append");
sfPacket_CanRead = cast(pf_sfPacket_CanRead)dll.getSymbol("sfPacket_CanRead");

View file

@ -255,9 +255,9 @@ private:
static this()
{
debug
DllLoader dll = DllLoader.load("csfml-network-d");
DllLoader dll = DllLoader.load("csfml-network-d-2");
else
DllLoader dll = DllLoader.load("csfml-network");
DllLoader dll = DllLoader.load("csfml-network-2");
sfTcpSocket_Accept = cast(pf_sfTcpSocket_Accept)dll.getSymbol("sfTcpSocket_Accept");
sfTcpSocket_Connect = cast(pf_sfTcpSocket_Connect)dll.getSymbol("sfTcpSocket_Connect");

View file

@ -224,9 +224,9 @@ private:
static this()
{
debug
DllLoader dll = DllLoader.load("csfml-network-d");
DllLoader dll = DllLoader.load("csfml-network-d-2");
else
DllLoader dll = DllLoader.load("csfml-network");
DllLoader dll = DllLoader.load("csfml-network-2");
sfUdpSocket_Bind = cast(pf_sfUdpSocket_Bind)dll.getSymbol("sfUdpSocket_Bind");
sfUdpSocket_Create = cast(pf_sfUdpSocket_Create)dll.getSymbol("sfUdpSocket_Create");