// Copyright 2019 The TAL Authors. All rights reserved.
#include <windows.h>

#include "public/iextension.h"
#include "test/extension_manager_impl.h"

// Program entry point function.
int APIENTRY wWinMain(HINSTANCE hInstance,
  HINSTANCE hPrevInstance,
  LPTSTR    lpCmdLine,
  int       nCmdShow) {
  UNREFERENCED_PARAMETER(hPrevInstance);
  UNREFERENCED_PARAMETER(lpCmdLine);

  ExtensionManagerImpl manager;
  return manager.InitExtension();
}
