From 72c46bdd7f5d430ab1ad1d420ed77c7f22df857a Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sat, 30 Sep 2017 15:01:35 +0200 Subject: rename --- .../ActivatableBoardGame/ActivatableBoardGame.cpp | 54 ---------------------- 1 file changed, 54 deletions(-) delete mode 100755 Tobii EyeX/samples/ActivatableBoardGame/ActivatableBoardGame.cpp (limited to 'Tobii EyeX/samples/ActivatableBoardGame/ActivatableBoardGame.cpp') diff --git a/Tobii EyeX/samples/ActivatableBoardGame/ActivatableBoardGame.cpp b/Tobii EyeX/samples/ActivatableBoardGame/ActivatableBoardGame.cpp deleted file mode 100755 index 4fbe055..0000000 --- a/Tobii EyeX/samples/ActivatableBoardGame/ActivatableBoardGame.cpp +++ /dev/null @@ -1,54 +0,0 @@ -/* - * ActivatableBoardGame sample: - * This is an example that demonstrates the use of Activatable interactors in the context of a board game. - * - * Copyright 2013 Tobii Technology AB. All rights reserved. - */ - -#include "stdafx.h" -#include -#include -#include -#include "Resource.h" -#include "Board.h" -#include "BoardWindow.h" - -#pragma comment (lib, "Gdiplus.lib") - -// Application entry point. -int APIENTRY _tWinMain(_In_ HINSTANCE hInstance, - _In_opt_ HINSTANCE hPrevInstance, - _In_ LPTSTR lpCmdLine, - _In_ int nCmdShow) -{ - UNREFERENCED_PARAMETER(hPrevInstance); - UNREFERENCED_PARAMETER(lpCmdLine); - - // initialize the GDI+ library. - ULONG_PTR gdiplusToken; - Gdiplus::GdiplusStartupInput gdiplusStartupInput; - Gdiplus::GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL); - - // initialize the Board and the BoardWindow. - // these will be un-initialized automatically when they fall out of scope. - Board board(8); - BoardWindow::RegisterWindowClass(hInstance); - BoardWindow window(board, hInstance, nCmdShow); - - HACCEL hAccelTable = LoadAccelerators(hInstance, MAKEINTRESOURCE(IDC_GOBANG)); - - // Main message loop - MSG msg; - while (GetMessage(&msg, NULL, 0, 0)) - { - if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) - { - TranslateMessage(&msg); - DispatchMessage(&msg); - } - } - - Gdiplus::GdiplusShutdown(gdiplusToken); - - return (int) msg.wParam; -} -- cgit v1.2.3