Windows C++ fixes

This commit is contained in:
Jeffrey Pfau 2014-10-25 03:06:45 -07:00
parent c8d5219212
commit 2415d59d94
3 changed files with 6 additions and 8 deletions

View File

@ -7,8 +7,8 @@
#include <QStackedLayout>
#include "GameController.h"
#include "GDBWindow.h"
#include "GDBController.h"
#include "GDBWindow.h"
#include "LoadSaveState.h"
#include "LogView.h"

View File

@ -8,6 +8,7 @@ extern "C" {
#include "gba.h"
}
#include "GDBController.h"
#include "Display.h"
#include "LoadSaveState.h"
@ -16,7 +17,6 @@ struct StartupOptions;
namespace QGBA {
class GameController;
class GDBController;
class LogView;
class WindowBackground;

View File

@ -48,10 +48,9 @@ static inline Socket SocketOpenTCP(int port, uint32_t bindAddress) {
struct sockaddr_in bindInfo = {
.sin_family = AF_INET,
.sin_port = htons(port),
.sin_addr = {
.s_addr = htonl(bindAddress)
}
.sin_addr = { 0 }
};
bindInfo.sin_addr.s_addr = htonl(bindAddress);
int err = bind(sock, (const struct sockaddr*) &bindInfo, sizeof(struct sockaddr_in));
if (err) {
close(sock);
@ -69,10 +68,9 @@ static inline Socket SocketConnectTCP(int port, uint32_t destinationAddress) {
struct sockaddr_in bindInfo = {
.sin_family = AF_INET,
.sin_port = htons(port),
.sin_addr = {
.s_addr = htonl(destinationAddress)
}
.sin_addr = { 0 }
};
bindInfo.sin_addr.s_addr = htonl(destinationAddress);
int err = connect(sock, (const struct sockaddr*) &bindInfo, sizeof(struct sockaddr_in));
if (err) {
close(sock);