zoukankan      html  css  js  c++  java
  • ultra vnc 启动顺序 GIS

    (1) winvnc 下的         int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow)

    (2) 加载vnclang_server.dll

    (3) 在myinit 函数里  设置SetOSVersion();

    (4)调用VSocketSystem,初始化

    VSocketSystem socksys;
    if (!socksys.Initialised())
    {
    MessageBoxSecure(NULL, sz_ID_FAILED_INIT, szAppName, MB_OK);
    return 0;
    }
    return 1;

    界面文件在 winvnc.RC

    响应 ultravnc Server Property Page 里面的Apply pushbutton ——IDC_APPLY:

    在vncproperties.CPP ,里面有个

    vncProperties::InitPortSettings(HWND hwnd),设置各种参数

    BOOL CALLBACK vncProperties::DialogProc(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam ) 方法里面响应

    还有个 vncServer *m_server;

    m_server ,有各种函数  AddClient(),RequireMSLogon ,

    _this->m_server->SetNewMSLogon(SendMessage(hNewMSLogon, BM_GETCHECK, 0, 0) == BST_CHECKED);
    // Marscha@2004 - authSSP: end of change

    ,EnableDSMPlugin,SetQueryTimeout。SetHookings();

  • 相关阅读:
    javascript初识
    css定位及叠放次序
    css精灵图
    css元素的显示及隐藏、文字隐藏
    css浮动
    盒子模型的边框、内边距、外边距、阴影
    css背景
    css中的显示与隐藏
    css定位
    css的布局与版心布局
  • 原文地址:https://www.cnblogs.com/gisbeginner/p/2758339.html
Copyright © 2011-2022 走看看