svvitch
digital signage player
|
#include <winsock2.h>
#include <windows.h>
#include <psapi.h>
#include <Dbt.h>
#include <Poco/format.h>
#include <Poco/Logger.h>
#include <Poco/UnicodeConverter.h>
#include <Poco/Net/HTTPServer.h>
#include <Poco/Net/HTTPServerParams.h>
#include <Poco/Net/ServerSocket.h>
#include <Poco/Net/HTTPStreamFactory.h>
#include <Poco/Net/HTTPSStreamFactory.h>
#include <Poco/Net/KeyConsoleHandler.h>
#include <Poco/Net/ConsoleCertificateHandler.h>
#include <Poco/Net/SSLManager.h>
#include <Poco/SharedPtr.h>
#include "switch.h"
#include "Renderer.h"
#include "CaptureScene.h"
#include "MainScene.h"
#include "DiffDetectScene.h"
#include "Utils.h"
#include "WebAPI.h"
#include <crtdbg.h>
Go to the source code of this file.
Defines | |
#define | _CRTDBG_MAP_ALLOC |
Functions | |
int WINAPI | WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) |
アプリケーションのエントリポイントです | |
void | mainloop (HWND hWnd) |
メインループ | |
LRESULT CALLBACK | WindowProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) |
Windowメッセージの処理 | |
Configuration & | config () |
設定オブジェクトを取得します | |
void | swapout () |
スワップアウトを行います |
#define _CRTDBG_MAP_ALLOC |
Definition at line 39 of file switch.cpp.
Configuration& config | ( | ) |
設定オブジェクトを取得します
Definition at line 451 of file switch.cpp.
void mainloop | ( | HWND | hWnd | ) |
メインループ
Definition at line 273 of file switch.cpp.
void swapout | ( | ) |
スワップアウトを行います
Definition at line 455 of file switch.cpp.
LRESULT CALLBACK WindowProc | ( | HWND | hWnd, |
UINT | msg, | ||
WPARAM | wParam, | ||
LPARAM | lParam | ||
) |
Windowメッセージの処理
Definition at line 325 of file switch.cpp.
int WINAPI WinMain | ( | HINSTANCE | hInstance, |
HINSTANCE | hPrevInstance, | ||
LPSTR | lpCmdLine, | ||
int | nCmdShow | ||
) |
アプリケーションのエントリポイントです
hInstance | 現在のインスタンスのハンドル |
hPrevInstance | 以前のインスタンスのハンドル |
lpCmdLine | コマンドラインパラメータ |
nCmdShow | ウィンドウの表示状態 |
Definition at line 55 of file switch.cpp.