24 lines
687 B
C
24 lines
687 B
C
/*
|
|
* demo_ac_main.c - 매입 온라인 데모 부트스트랩 (링크 검증)
|
|
*
|
|
* 생성된 플래그십 서비스(AC_OL_0001)를 TxCore 레지스트리에 등록하여
|
|
* 등록/디스패치/DBIO 링크 경로가 실제로 연결됨을 증명한다.
|
|
*/
|
|
#include <stdio.h>
|
|
|
|
#include "txcore.h"
|
|
|
|
void AC_OL_0001(TXSVCINFO *ctx);
|
|
|
|
int main(void)
|
|
{
|
|
tx_set_loglevel(TX_LOG_INFO);
|
|
tx_log(TX_LOG_INFO, "매입 온라인 데모 기동 (TxCore)");
|
|
|
|
tx_register("AC_OL_0001", AC_OL_0001);
|
|
|
|
tx_log(TX_LOG_INFO, "등록 서비스 수 = %d", tx_service_count());
|
|
printf("demo_ac_server 준비완료: 서비스 %d개 등록\n",
|
|
tx_service_count());
|
|
return 0;
|
|
}
|