OSDN Git Service

add b25-remote
[rec10/rec10-git.git] / b25-remote / b25-server.cpp
1 #include <stdio.h>
2 #include "CasServer.h"
3
4 CCasServer m_CasServer(NULL);
5 int m_dwServerPort = 6900UL;
6
7 int main() {
8         if(!m_CasServer.OpenServer(m_dwServerPort)){\r
9                 printf("サーバの起動に失敗しました。\nTCPポートまたはカードリーダをオープンできません。\n");\r
10                 return TRUE;\r
11         }
12         getchar();
13 }
14