NetDrive2 SDK Reference

Size: px
Start display at page:

Download "NetDrive2 SDK Reference"

Transcription

1 NetDrive2 SDK Reference Bdrive Inc, Copyright Bdrive inc, A Rights Reserved

2 version date e-mai

3 Contents 1 Overview Instaation Instaation Uninstaation To incude header fie and ink ibrary fie API References ND2_INIT ND2_CONNECT ND2_CONNECT_EX ND2_DISCONNECT ND2_DISCONNECT_ALL ND2_SETSIZE ND2_GET_CLOUDUSERNAME ND2_SET_MOVE_FOLDER ND2_GET_CREDENTIAL ND2_REFRESH_CLOUDUSAGE ND2_SET_DRIVESIZE_CALLBACK ND2_SHUTDOWN ND2_SET_SPEEDLIMIT ND2_SET_SPEEDLIMIT_ALL ND2_SET_LOGLEVEL

4 3

5 1 Overview This document describes the about NetDrive 2.6.x SDK Support OS Microsoft Windows 10 Microsoft Windows 8 Microsoft Windows 8.1 Microsoft Windows 7 Microsoft Windows Vista Microsoft Windows XP Microsoft Windows Server 2003/2008/2012 4

6 2 Instaation 2.1 Instaation To insta NetDrive2 SDK, execute foowing command. NetDrive2-SDKsetup.exe /NAME=$ND2_SDK_NAME /INSTDIR=$ND2_SDK_INSTDIR $ND2_SDK_NAME must be a unique your string. ex) NetDrive2_SDK_APP $ND2_SDK_INSTDIR is a path to insta ex) C:\Program Fies\ND2_App Foowing command is an exampe. NetDrive2-SDKsetup.exe /NAME=ND2_EX_APP /INSTDIR= C:\Program Fies\ND2_EX_APP 2.2 Uninstaation To uninsta NetDrive2 SDK, execute foowing command, $PATH is NetDrive2 SDK path. $PATH\ND2SDK_Uninsta.exe 2.3 To incude header fie and ink ibrary fie The header fie and ibrary fie is in NetDrive2 SDK instaed path. Header ibrary nd2api.h nd2api.ib 5

7 3 API References Function ND2_INIT ND2_CONNECT ND2_CONNECT_EX ND2_DISCONNET ND2_DISCONNECT_ALL ND2_SETSIZE ND2_GET_CLOUDUSERNAME ND2_SET_MOVE_FOLDER ND2_GET_CREDENTIAL ND2_REFRESH_CLOUDUSAGE ND2_SET_DRIVESIZE_CALLBACK ND2_SHUTDOWN ND2_SET_SPEEDLIMIT ND2_SET_SPEEDLIMIT_ALL ND2_SET_LOGLEVEL Description Initiates NetDrive2 SDK with seria key Perform mounting a drive Perform mounting with more parameters Perform unmounting a mounted drive Perform unmounting a the mounted drives Updates a tota and free size vaues Get user name of coud storage service Ony for Googe Drive, OneDrive Enabe or disabe to rename,move,deete foder Ony for Amazon S3, Openstack Swift Get credentia information. ony for Googe Drive and OneDrive Refresh free and used space of the mounted drive. Ony for Googe Drive and OneDrive Shutdowns NetDrive2e SDK Perform the speed imit Perform the speed imit Perform the og eve settings 3.1 ND2_INIT BOOL ND2_INIT( LPCSTR pseria ) The ND2_INIT function initiates use of the NetDrive2 API by a process. It must be the first function caed by an appication or DLL pseria : a given seria of NetDrive2 SDK 6

8 Return Vaue If successfu, it returns TRUE. Otherwise it returns FALSE. When ND2_INIT is caed by an appication or D, two nd2mounter.exe are executed. 3.2 ND2_CONNECT INT32 ND2_CONNECT(LPCSTR type, LPCSTR ur, LPCSTR user, LPCSTR pwd, LPCSTR drive, LPCSTR abe ) The ND2_CONNECT function performs mounting a site to a etter. type : The nu terminated string to mount type. Type must be one of supported types. Supported types are beow. type dav ftp sftp s3 gdrive skydrive Description WebDAV connection ftp connection SFTP connection Amazon S3 connection Googe Drive connection OneDrive(SkyDrive) connection ur : A ur to connect. It must be a fu formatted ur incuding scheme, host, path, port Type scheme Description 7

9 dav http A genera HTTP https A HTTP over SSL/TLS ftp ftp A genera FTP ftps A FTP over SSL/TLS sftp sftp ftp over SSH Ex) Ex) ftps:// :21/path user : A user account to connect pwd : A password of user to connect drive : A drive etter to be mounted. Labe : A abe of drive etter to be shown Return Vaue vaue Description 0 Success -100 Not initiaized -1 Drive error -2 Drive etter error -3 Drive insta error -4 Drive start error -5 Mount error 10 Permission denied 11 Connection error 12 Path is not found. The ur to connect must be a fu formatted incuding scheme, host, port and path If both user and password are NULL, it tries to connect anonymous Exampe Code 8

10 ND2_CONNECT( dav, useraccount, password, Z, DAV ) 3.3 ND2_CONNECT_EX INT32 ND2_CONNECT_EX(LPCSTR type, LPCSTR ur, LPCSTR user, LPCSTR pwd, LPCSTR drive, LPCSTR abe, LPCSTR key_fie, LPCSTR user_agent, UINT32 option, PROXY_INFO *pproxyinfo ) The ND2_CONNECT_EX is simiar to ND2_CONNECT. The ND2_CONNECT_EX is added detaied parameters. key_fie : If type is sftp, this pamameter is a private key fie path on sftp connection. if type is gdrive or skydrive, this parameter is a string of credentia getting by ND2_GET_CREDENTIAL function. Otherwise this parameter is ignored. user_agent : A NULL terminated string to be User-agent vaue of HTTP header. This parameter is vaid if type is dav, otherwise ignored. Maximum ength of user_agent is 512. option : A combination vaue of foowing. defined vaue Description NETWORK_DRIVE 0x Mount as a oca drive LOCAL_DRIVE 0x Moust as a network drive SFTP_HOME 0x Mount point is a home directory of user. This is vaid if type is sftp, otherwise ignored SFTP_ROOT 0x Mount point is a root directory of system. This is vaid if type is sftp, otherwise ignored. UNMOUNT_KILLED 0x Unmount virtua drive when the mounting process is kied DON T_UNMOUNT_KILLED 0x Don t unmount virtua drive 9

11 even if the mounting process is kied HTTP_COMPRESS_GZIP 0x If type is dav, Acceptencoding: gzip is added to http request header. FTP_PASSIVE 0x Use passive mode ftp transfer FTP_ACTIVE 0x Use active mode ftp transfer pproxyinfo : Proxy Information. A pointer of PROXY_INFO structure. It contains proxy host, port, user account and password. Return Vaue Same with ND2_CONNECT Same with ND2_CONNECT Exampe Code ND2_CONNECT_EX( dav, useraccount, password, Z, DAV, NULL, netdrive2 sdk webdav cient, 0x00 ) 3.4 ND2_DISCONNECT INT32 ND2_DISCONNECT( LPCSTR drive ) The ND2_DISCONNECT function performs unmounting a mounted drive 10

12 drive : A NULL terminated string containing drive etter Return Vaue If successfu, the ND2_DISCONENCT returns 0. otherwise it returns ND2_DISCONNECT_ALL BOOL ND2_DISCONNECT_ALL() The ND2_DISCONNECT_ALL function perform unmounting a the mounted drives. Return Vaue If successfu, the ND2_DISCONNECT_ALL returns 1, otherwise it returns ND2_SETSIZE INT32 ND2_SETSIZE( LPCSTR drive, int64 tota, int64 free ) The ND2_SETSIZE function updates tota and free size vaues of drive drive : a drive etter to be set size tota : tota bytes size of drive free : free bytes size of drive 11

13 Return Vaue If successfu, the ND2_SETSIZE returns 0, otherwise ND2_GET_CLOUDUSERNAME BOOL ND2_GET_CLOUDUSERNAME( char *pdrive, wchar_t **pname) Get user name of coud service. pdrive : a mounted drive etter pname (out) : a buffer of user name to be gotten Return Vaue If successfu, the ND2_GET_CLOUDUSERNAME returns TRUE, otherwise FALSE. This function is vaid ony for gdrive and skydrive 3.8 ND2_SET_MOVE_FOLDER void ND2_SET_MOVE_FOLDER( char *pdrive, int32 fag ) The ND2_SET_MOVE_FOLDER function makes enabe or disabe to rename,move and deete foder of a mounted drive. 12

14 pdrive : a mounted drive etter to make enabe or disabe to rename, move and deete foder fag : 1 make enabe to rename, move and deete foder. 0 make disabe. This function is vaid ony for s3 and swift drive type. A time out coud be occurred when a foder is renamed or moved or deeted because of features of s3 and swift. 3.9 ND2_GET_CREDENTIAL BOOL ND2_GET_CREDENTIAL( char *pdrive, char **cred ) The ND2_GET_CREDENTIAL function gets the credentia information of Googe Drive connection or OneDrive connection. This function is vaid ony for gdrive and skydrive pdrive : a mounted drive etter to get credentia information cred: output buffer to get credentia information Return Vaue If successfu, the ND2_GET_CREDENTIAL returns TRUE, otherwise FALSE. This function is vaid ony for gdrive and skydrive. 13

15 3.10 ND2_REFRESH_CLOUDUSAGE void ND2_REFRESH_CLOUDUSAGE( char *pdrive ) The ND2_REFRESH_CLOUDUSAGE function refresh the free and used space of a mounted drive. pdrive : a mounted drive etter to refresh a mounted drive This function is vaid ony for gdrive and skydrive ND2_SET_DRIVESIZE_CALLBACK BOOL ND2_SET_DRIVESIZE_CALLBACK( ND2_DRIVESIZE_CALLBACK pcaback ) ND2_SET_DRIVESIZE_CALLBACK function sets the caback function. pcaback : the caback function pointer This caback function is caed when the fie system of NetDrive needs the size of drive. The type of ND2_DRIVESIZE_CALLBACK is foowing. typedef BOOL(*ND2_DRIVESIZE_CALLBACK)( char *pdrive, int64 *tota, int64 *free ); 14

16 3.12 ND2_SHUTDOWN void ND2_SHUTDOWN() void ND2_SHUTDOWN() ND2_SHUTDOWN function ends the use of API functions NetDrive2 SDK. If ND2_SHUTDOWN is caed, the functions of NetDrive2 SDK cannot be used any more ND2_SET_SPEEDLIMIT void ND2_SET_SPEEDLIMIT(char *pdrive, int64 speed ) ND2_SET_SPEEDLIMIT function imits the transfer speed of the specified mounted drive. pdrive : the drive etter to imit the transfer speed. speed : the speed bytes per second to imit. if the vaue is 0, the speed is not imited ND2_SET_SPEEDLIMIT_ALL void ND2_SET_SPEEDLIMIT( int64 speed ) 15

17 ND2_SET_SPEEDLIMIT_ALL function imits the transfer speed of the a mounted drive. speed : the speed bytes per second to imit. if the vaue is 0, the speed is not imited ND2_SET_LOGLEVEL void ND2_SET_LOGLEVEL( char* eve ) ND2_SET_LOGLEVEL function set the og eve of NetDrive. eve : DEBUG or ERROR The og fie is saved in [%PROGRAMDATA%\SDK_NAME\nd2svcog]. ex) C:\ProgramData\NetDrive2\nd2svcog\nd2svc.og 16

NetDrive2 SDK Reference

NetDrive2 SDK Reference NetDrive2 SDK Reference Bdrive Inc, Copyright Bdrive inc, All Rights Reserved version date e-mail 0.1 2014-4-10 jyyoon@bdrive.com 0.2 2014-5-9 jyyoon@bdrive.com 0.3 2014-6-14 jyyoon@bdrive.com 0.4 2014-7-14

More information

NCH Software Express Delegate

NCH Software Express Delegate NCH Software Express Deegate This user guide has been created for use with Express Deegate Version 4.xx NCH Software Technica Support If you have difficuties using Express Deegate pease read the appicabe

More information

AgreeYa Solutions. Site Administrator for SharePoint User Guide

AgreeYa Solutions. Site Administrator for SharePoint User Guide AgreeYa Soutions Site Administrator for SharePoint 5.2.4 User Guide 2017 2017 AgreeYa Soutions Inc. A rights reserved. This product is protected by U.S. and internationa copyright and inteectua property

More information

Simba MongoDB ODBC Driver with SQL Connector. Installation and Configuration Guide. Simba Technologies Inc.

Simba MongoDB ODBC Driver with SQL Connector. Installation and Configuration Guide. Simba Technologies Inc. Simba MongoDB ODBC Driver with SQL Instaation and Configuration Guide Simba Technoogies Inc. Version 2.0.1 February 16, 2016 Instaation and Configuration Guide Copyright 2016 Simba Technoogies Inc. A Rights

More information

Quick Start Instructions

Quick Start Instructions Eaton Power Xpert Gateway Minisot (PXGMS) UPS Card Quick Start Instructions Ethernet 10/100 Status DHCP EMP + - CMN 100 Act Ident Power PXGMS UPS Restart TX Setup RX Package Contents Power Xpert Gateway

More information

Bridge Talk Release Notes for Meeting Exchange 5.0

Bridge Talk Release Notes for Meeting Exchange 5.0 Bridge Tak Reease Notes for Meeting Exchange 5.0 This document ists new product features, issues resoved since the previous reease, and current operationa issues. New Features This section provides a brief

More information

Avaya one-x Mobile Pre-Installation Checklist

Avaya one-x Mobile Pre-Installation Checklist Avaya one-x Mobie 18-602133 Issue 1 November 2007 Avaya one-x Mobie November 2007 1 00A Rights Reserved. Notice Whie reasonabe efforts were made to ensure that the information in this document was compete

More information

ECL Portal. Standardized SCADA solution for ECL Comfort 310. Data sheet. Description

ECL Portal. Standardized SCADA solution for ECL Comfort 310. Data sheet. Description Standardized SCADA soution for ECL Comfort 310 Description The is an effective turnkey SCADA (Supervisory Contro And Data Acquisition) too for professiona users ike service personne of district energy

More information

CSE120 Principles of Operating Systems. Prof Yuanyuan (YY) Zhou Advanced Memory Management

CSE120 Principles of Operating Systems. Prof Yuanyuan (YY) Zhou Advanced Memory Management CSE120 Principes of Operating Systems Prof Yuanyuan (YY) Zhou Advanced Memory Management Advanced Functionaity Now we re going to ook at some advanced functionaity that the OS can provide appications using

More information

Look Bigger to Grow Bigger

Look Bigger to Grow Bigger May 2013 Look Bigger to Grow Bigger Using Virtua Office to hep grow your business Presented by 8x8 2012 NASDAQ-LISTED: EGHT Using Virtua Office to Hep Grow Your Business This webinar wi show you how to

More information

Readme ORACLE HYPERION PROFITABILITY AND COST MANAGEMENT

Readme ORACLE HYPERION PROFITABILITY AND COST MANAGEMENT ORACLE HYPERION PROFITABILITY AND COST MANAGEMENT Reease 11.1.2.4.000 Readme CONTENTS IN BRIEF Purpose... 2 New Features in This Reease... 2 Instaation Information... 2 Supported Patforms... 2 Supported

More information

Infinity Connect Web App Customization Guide

Infinity Connect Web App Customization Guide Infinity Connect Web App Customization Guide Contents Introduction 1 Hosting the customized Web App 2 Customizing the appication 3 More information 8 Introduction The Infinity Connect Web App is incuded

More information

BEA WebLogic Server. Release Notes for WebLogic Tuxedo Connector 1.0

BEA WebLogic Server. Release Notes for WebLogic Tuxedo Connector 1.0 BEA WebLogic Server Reease Notes for WebLogic Tuxedo Connector 1.0 BEA WebLogic Tuxedo Connector Reease 1.0 Document Date: June 29, 2001 Copyright Copyright 2001 BEA Systems, Inc. A Rights Reserved. Restricted

More information

Guardian 365 Pro App Guide. For more exciting new products please visit our website: Australia: OWNER S MANUAL

Guardian 365 Pro App Guide. For more exciting new products please visit our website: Australia:   OWNER S MANUAL Guardian 365 Pro App Guide For more exciting new products pease visit our website: Austraia: www.uniden.com.au OWNER S MANUAL Privacy Protection Notice As the device user or data controer, you might coect

More information

Avaya Aura Call Center Elite Multichannel Configuration Server User Guide

Avaya Aura Call Center Elite Multichannel Configuration Server User Guide Avaya Aura Ca Center Eite Mutichanne Configuration Server User Guide Reease 6.2.3/6.2.5 March 2013 2013 Avaya Inc. A Rights Reserved. Notice Whie reasonabe efforts were made to ensure that the information

More information

Amazon Elastic Compute Cloud. Amazon Elastic Compute Cloud. Amazon Elastic Compute Cloud 7/12/17. Compute. Instance.

Amazon Elastic Compute Cloud. Amazon Elastic Compute Cloud. Amazon Elastic Compute Cloud 7/12/17. Compute. Instance. Amazon Eastic Compute Coud Compute - The amount of computationa power required to fufi your workoad Instance - Virtua machines - Charged per hour whie running - Virtua Hardware - AMI - Software (appications,

More information

Administering Avaya Web Conferencing

Administering Avaya Web Conferencing Administering Avaya Web Conferencing Reease 5.2 Service Pack 2 October 31, 2012 04-603434 Issue 1 2012 Avaya Inc. A Rights Reserved. Notice Whie reasonabe efforts have been made to ensure that the information

More information

file://j:\macmillancomputerpublishing\chapters\in073.html 3/22/01

file://j:\macmillancomputerpublishing\chapters\in073.html 3/22/01 Page 1 of 15 Chapter 9 Chapter 9: Deveoping the Logica Data Mode The information requirements and business rues provide the information to produce the entities, attributes, and reationships in ogica mode.

More information

This is a CLOSED-BOOK-CLOSED-NOTES exam consisting of five (5) questions. Write your answer in the answer booklet provided. 1. OO concepts (5 points)

This is a CLOSED-BOOK-CLOSED-NOTES exam consisting of five (5) questions. Write your answer in the answer booklet provided. 1. OO concepts (5 points) COMP2012H Object Oriented Programming and Data Structures Spring Semester 2013 Midterm Exam Soution March 26, 2013, 10:30-11:50am in Room 3598 Instructor: Chi Keung Tang This is a CLOSED-OOK-CLOSED-NOTES

More information

NetIQ Access Manager - Advanced Authentication Plugin. Installation Guide. Version 5.1.0

NetIQ Access Manager - Advanced Authentication Plugin. Installation Guide. Version 5.1.0 NetIQ Access Manager - Advanced Authentication Pugin Instaation Guide Version 5.1.0 Tabe of Contents 1 Tabe of Contents 2 Introduction 3 About This Document 3 Environment 4 NetIQ Access Manager Advanced

More information

CylanceOPTICS. Frequently Asked Questions

CylanceOPTICS. Frequently Asked Questions CyanceOPTICS Frequenty Asked Questions Question What is CyanceOPTICS? CyanceOPTICS is an AI driven endpoint detection and response component providing consistent visibiity, root cause anaysis, scaabe threat

More information

Oracle Data Relationship Management

Oracle Data Relationship Management Orace Data Reationship Management Orace Data Reationship Steward Orace Data Reationship Management for Orace Hyperion Enterprise Panning Suite Orace Data Reationship Management for Orace Hyperion Financia

More information

Intro to Programming & C Why Program? 1.2 Computer Systems: Hardware and Software. Why Learn to Program?

Intro to Programming & C Why Program? 1.2 Computer Systems: Hardware and Software. Why Learn to Program? Intro to Programming & C++ Unit 1 Sections 1.1-3 and 2.1-10, 2.12-13, 2.15-17 CS 1428 Spring 2018 Ji Seaman 1.1 Why Program? Computer programmabe machine designed to foow instructions Program a set of

More information

Eaton 93PM Remote Monitoring Device. Installation and Operation Manual

Eaton 93PM Remote Monitoring Device. Installation and Operation Manual Eaton 93PM Remote Monitoring Device Instaation and Operation Manua IMPORTANT SAFETY INSTRUCTIONS SAVE THESE INSTRUCTIONS This manua contains important instructions that you shoud foow during instaation

More information

Operating Avaya Aura Conferencing

Operating Avaya Aura Conferencing Operating Avaya Aura Conferencing Reease 6.0 June 2011 04-603510 Issue 1 2010 Avaya Inc. A Rights Reserved. Notice Whie reasonabe efforts were made to ensure that the information in this document was compete

More information

Avaya Interaction Center Client SDK Programmer Guide

Avaya Interaction Center Client SDK Programmer Guide Avaya Interaction Center Cient SDK Programmer Guide Reease 7.2 May 2013 Issue 1.1 2013 Avaya Inc. A Rights Reserved. Notice Whie reasonabe efforts were made to ensure that the information in this document

More information

Maru: Hardware-Assisted Secure Cloud Computing

Maru: Hardware-Assisted Secure Cloud Computing Maru: Hardware-Assisted Secure Coud Computing Peter Pietzuch prp@imperia.ac.uk Large-Scae Distributed Systems Group Department of Computing, Imperia Coege London Peter R. Pietzuch http://sds.doc.ic.ac.uk

More information

IBC DOCUMENT PROG007. SA/STA SERIES User's Guide V7.0

IBC DOCUMENT PROG007. SA/STA SERIES User's Guide V7.0 IBC DOCUMENT SA/STA SERIES User's Guide V7.0 Page 2 New Features for Version 7.0 Mutipe Schedues This version of the SA/STA firmware supports mutipe schedues for empoyees. The mutipe schedues are impemented

More information

Hour 3: Linux Basics Page 1 of 16

Hour 3: Linux Basics Page 1 of 16 Hour 3: Linux Basics Page 1 of 16 Hour 3: Linux Basics Now that you ve instaed Red Hat Linux, you might wonder what to do next. Whether you re the kind of person who earns by jumping right in and starting

More information

Avaya Aura Call Center Elite Multichannel Application Management Service User Guide

Avaya Aura Call Center Elite Multichannel Application Management Service User Guide Avaya Aura Ca Center Eite Mutichanne Appication Management Service User Guide Reease 6.3 October 2013 2014 Avaya Inc. A Rights Reserved. Notice Whie reasonabe efforts have been made to ensure that the

More information

MCSE TestPrep SQL Server 6.5 Design & Implementation - 3- Data Definition

MCSE TestPrep SQL Server 6.5 Design & Implementation - 3- Data Definition MCSE TestPrep SQL Server 6.5 Design & Impementation - Data Definition Page 1 of 38 [Figures are not incuded in this sampe chapter] MCSE TestPrep SQL Server 6.5 Design & Impementation - 3- Data Definition

More information

NCH Software Spin 3D Mesh Converter

NCH Software Spin 3D Mesh Converter NCH Software Spin 3D Mesh Converter This user guide has been created for use with Spin 3D Mesh Converter Version 1.xx NCH Software Technica Support If you have difficuties using Spin 3D Mesh Converter

More information

ngenius Instrumentation Overview

ngenius Instrumentation Overview ngenius Instrumentation Overview NetScout Systems, Inc. 4 Technoogy Park Drive Westford, MA 01886 Teephone: 978-614-4000 Fax: 978-614-4004 Web: http://www.netscout.com NetScout is a registered trademark

More information

Avaya Aura Call Center Elite Multichannel Desktop User Guide

Avaya Aura Call Center Elite Multichannel Desktop User Guide Avaya Aura Ca Center Eite Mutichanne Desktop User Guide Reease 6.2.3/6.2.5 March 2013 2013 Avaya Inc. A Rights Reserved. Notice Whie reasonabe efforts were made to ensure that the information in this document

More information

MCSE Training Guide: Windows Architecture and Memory

MCSE Training Guide: Windows Architecture and Memory MCSE Training Guide: Windows 95 -- Ch 2 -- Architecture and Memory Page 1 of 13 MCSE Training Guide: Windows 95-2 - Architecture and Memory This chapter wi hep you prepare for the exam by covering the

More information

Databases and PHP. Accessing databases from PHP

Databases and PHP. Accessing databases from PHP Databases and PHP Accessing databases from PHP PHP & Databases PHP can connect to virtuay any database There are specific functions buit-into PHP to connect with some DB There is aso generic ODBC functions

More information

PusleIR Multitouch Screen Software SDK Specification. Revision 4.0

PusleIR Multitouch Screen Software SDK Specification. Revision 4.0 PusleIR Multitouch Screen Software SDK Specification Revision 4.0 Table of Contents 1. Overview... 3 1.1. Diagram... 3 1.1. PulseIR API Hierarchy... 3 1.2. DLL File... 4 2. Data Structure... 5 2.1 Point

More information

Sample of a training manual for a software tool

Sample of a training manual for a software tool Sampe of a training manua for a software too We use FogBugz for tracking bugs discovered in RAPPID. I wrote this manua as a training too for instructing the programmers and engineers in the use of FogBugz.

More information

How to Leverage Integration Labs? Helen Chen, Rich Bennett, Stephen Gooch, Gary Wu

How to Leverage Integration Labs? Helen Chen, Rich Bennett, Stephen Gooch, Gary Wu How to Leverage Integration Labs? Heen Chen, Rich Bennett, Stephen Gooch, Gary Wu Agenda How to Leverage Integration Labs Depoying OOM Using Heat Integration Labs Infrastructure Testing environment: currenty

More information

int fnvgetconfig(handle h, UINT32 id, const void *cfg, size_t sz);... 4

int fnvgetconfig(handle h, UINT32 id, const void *cfg, size_t sz);... 4 RP-VL-UTIL-V1 Developer s Guide [ Contents ] 1. Introduction... 1 2. Building Environment... 1 3. Operating Environment... 1 4. Function Explanation... 2 4.1. Common API for Transmitting and Receiving...

More information

1. INTRODUCTION 1.1 Product Introduction 1.2 Product Modes 1.3 Product Package 1.4 Network Printing Architecture 1.5 Network Printing Environment 1.6

1. INTRODUCTION 1.1 Product Introduction 1.2 Product Modes 1.3 Product Package 1.4 Network Printing Architecture 1.5 Network Printing Environment 1.6 Links for mode 504058 (1-Port UTP/BNC Parae Pocket Print Server): Downoads & inks http://www.inteinet-network.com/htm/d-pserver.htm This manua http://inteinet-network.com/mk2/manuas/502993_manua.zip Instructions

More information

Directives & Memory Spaces. Dr. Farid Farahmand Updated: 2/18/2019

Directives & Memory Spaces. Dr. Farid Farahmand Updated: 2/18/2019 Directives & Memory Spaces Dr. Farid Farahmand Updated: 2/18/2019 Memory Types Program Memory Data Memory Stack Interna PIC18 Architecture Data Memory I/O Ports 8 wires 31 x 21 Stack Memory Timers 21 wires

More information

l Tree: set of nodes and directed edges l Parent: source node of directed edge l Child: terminal node of directed edge

l Tree: set of nodes and directed edges l Parent: source node of directed edge l Child: terminal node of directed edge Trees & Heaps Week 12 Gaddis: 20 Weiss: 21.1-3 CS 5301 Fa 2016 Ji Seaman 1 Tree: non-recursive definition Tree: set of nodes and directed edges - root: one node is distinguished as the root - Every node

More information

O R A C L E H Y P E R I O N E N T E R P R I S E P E R F O R M A N C E M A N A G E M E N T S Y S T E M

O R A C L E H Y P E R I O N E N T E R P R I S E P E R F O R M A N C E M A N A G E M E N T S Y S T E M O R A C L E H Y P E R I O N E N T E R P R I S E P E R F O R M A N C E M A N A G E M E N T S Y S T E M O R A C L E H Y P E R I O N S T R A T E G I C F I N A N C E, F U S I O N E D I T I O N R E L E A S

More information

A Petrel Plugin for Surface Modeling

A Petrel Plugin for Surface Modeling A Petre Pugin for Surface Modeing R. M. Hassanpour, S. H. Derakhshan and C. V. Deutsch Structure and thickness uncertainty are important components of any uncertainty study. The exact ocations of the geoogica

More information

Intro to Programming & C Why Program? 1.2 Computer Systems: Hardware and Software. Hardware Components Illustrated

Intro to Programming & C Why Program? 1.2 Computer Systems: Hardware and Software. Hardware Components Illustrated Intro to Programming & C++ Unit 1 Sections 1.1-3 and 2.1-10, 2.12-13, 2.15-17 CS 1428 Fa 2017 Ji Seaman 1.1 Why Program? Computer programmabe machine designed to foow instructions Program instructions

More information

wepresent SharePod User's Manual Version: 1.1

wepresent SharePod User's Manual Version: 1.1 wepresent SharePod User's Manua Version: 1.1 1 Tabe of Contents 1 OVERVIEW... 3 2 PACKAGE CONTENTS... 4 3 PHYSICAL DETAILS... 4 4 WHAT YOU NEED... 5 5 WEPRESENT SHAREPOD PAIRING... 5 5.1 AUTO PAIRING...

More information

ADMINISTRATION GUIDE

ADMINISTRATION GUIDE STORMSHIELD VISIBILITY CENTER ADMINISTRATION GUIDE Date Juy 2017 Version V 1.1.1 Reference: svc-en-svc_administration_guide-v1.1.1 Detais Update 1. Tabe of contents 1. Getting started 4 2. Depoying the

More information

Link Registry Protocol Options

Link Registry Protocol Options Link Registry Protoco Options Norman Finn, March 2017 HUAWEI TECHNOLOGIES CO., LTD. IEEE 802.1 TSN At east two obvious choices for P802.1CS Link Registration Protoco An IS-IS-ike protoco. TCP (Transmission

More information

Functions. 6.1 Modular Programming. 6.2 Defining and Calling Functions. Gaddis: 6.1-5,7-10,13,15-16 and 7.7

Functions. 6.1 Modular Programming. 6.2 Defining and Calling Functions. Gaddis: 6.1-5,7-10,13,15-16 and 7.7 Functions Unit 6 Gaddis: 6.1-5,7-10,13,15-16 and 7.7 CS 1428 Spring 2018 Ji Seaman 6.1 Moduar Programming Moduar programming: breaking a program up into smaer, manageabe components (modues) Function: a

More information

Space-Time Trade-offs.

Space-Time Trade-offs. Space-Time Trade-offs. Chethan Kamath 03.07.2017 1 Motivation An important question in the study of computation is how to best use the registers in a CPU. In most cases, the amount of registers avaiabe

More information

allflowers I I USER S GUIDE

allflowers I I USER S GUIDE M Wafowers III USER S GUIDE font faq HOW TO INSTALL YOUR FONT You wi receive your fies as a zipped foder. For instructions on how to unzip your foder, visit LauraWorthingtonType.com/faqs/. Your font is

More information

CSE120 Principles of Operating Systems. Architecture Support for OS

CSE120 Principles of Operating Systems. Architecture Support for OS CSE120 Principes of Operating Systems Architecture Support for OS Why are you sti here? You shoud run away from my CSE120! 2 CSE 120 Architectura Support Announcement Have you visited the web page? http://cseweb.ucsd.edu/casses/fa18/cse120-a/

More information

Call DLL from Limnor Applications

Call DLL from Limnor Applications Call DLL from Limnor Applications There is a lot of computer software in the format of dynamic link libraries (DLL). DLLCaller performer allows your applications to call DLL functions directly. Here we

More information

Windows NT, Terminal Server and Citrix MetaFrame Terminal Server Architecture

Windows NT, Terminal Server and Citrix MetaFrame Terminal Server Architecture Windows NT, Termina Server and Citrix MetaFrame - CH 3 - Termina Server Architect.. Page 1 of 13 [Figures are not incuded in this sampe chapter] Windows NT, Termina Server and Citrix MetaFrame - 3 - Termina

More information

Graphical User Interface Manual

Graphical User Interface Manual DALF 1; Rev F Motor Contro Board Graphica User Interface Manua Revision 1.0.0 Feb 18, 2008 Embedded Eectronics Page 1 2/19/2008 Tabe of Contents 1 GUI APPLICATION OVERVIEW...3 1.1 COMMUNICATION...3

More information

Special Edition Using Microsoft Excel Selecting and Naming Cells and Ranges

Special Edition Using Microsoft Excel Selecting and Naming Cells and Ranges Specia Edition Using Microsoft Exce 2000 - Lesson 3 - Seecting and Naming Ces and.. Page 1 of 8 [Figures are not incuded in this sampe chapter] Specia Edition Using Microsoft Exce 2000-3 - Seecting and

More information

ECE544: Communication Networks-II, Spring Transport Layer Protocols Sumathi Gopal March 31 st 2006

ECE544: Communication Networks-II, Spring Transport Layer Protocols Sumathi Gopal March 31 st 2006 ECE544: Communication Networks-II, Spring 2006 Transport Layer Protocos Sumathi Gopa March 31 st 2006 Lecture Outine Introduction to end-to-end protocos UDP RTP TCP Programming detais 2 End-To-End Protocos

More information

Distance Weighted Discrimination and Second Order Cone Programming

Distance Weighted Discrimination and Second Order Cone Programming Distance Weighted Discrimination and Second Order Cone Programming Hanwen Huang, Xiaosun Lu, Yufeng Liu, J. S. Marron, Perry Haaand Apri 3, 2012 1 Introduction This vignette demonstrates the utiity and

More information

AC-DA28-AUHD User Manual

AC-DA28-AUHD User Manual User Manua pg. 1 Introduction AC-DA28-AUHD is an 18GBPS, fu bandwidth HDMI2.0a (HDR) with HDCP2.2 eight-way HDMI spitter. Functionay, distributes the two input HDMI signas to eight HDMI outputs (two switchabe

More information

Real-Time Image Generation with Simultaneous Video Memory Read/Write Access and Fast Physical Addressing

Real-Time Image Generation with Simultaneous Video Memory Read/Write Access and Fast Physical Addressing Rea-Time Image Generation with Simutaneous Video Memory Read/rite Access and Fast Physica Addressing Mountassar Maamoun 1, Bouaem Laichi 2, Abdehaim Benbekacem 3, Daoud Berkani 4 1 Department of Eectronic,

More information

If your PC is connected to the Internet, you should download a current membership data file from the SKCC Web Server.

If your PC is connected to the Internet, you should download a current membership data file from the SKCC Web Server. fie:///c:/users/ron/appdata/loca/temp/~hhe084.htm Page 1 of 54 SKCCLogger, Straight Key Century Cub Inc. A Rights Reserved Version v03.00.11, 24-Oct-2018 Created by Ron Bower, AC2C SKCC #2748S SKCCLogger

More information

Meeting Exchange 4.1 Service Pack 2 Release Notes for the S6200/S6800 Servers

Meeting Exchange 4.1 Service Pack 2 Release Notes for the S6200/S6800 Servers Meeting Exchange 4.1 Service Pack 2 Reease Notes for the S6200/S6800 Servers The Meeting Exchange S6200/S6800 Media Servers are SIP-based voice and web conferencing soutions that extend Avaya s conferencing

More information

An Introduction to Design Patterns

An Introduction to Design Patterns An Introduction to Design Patterns 1 Definitions A pattern is a recurring soution to a standard probem, in a context. Christopher Aexander, a professor of architecture Why woud what a prof of architecture

More information

Universiteit Leiden ICT Shared Service Centre 8 February Before you start with the instructions below, make sure:

Universiteit Leiden ICT Shared Service Centre 8 February Before you start with the instructions below, make sure: SFTP Gateway This document describes how to connect to the Leiden University file-system, through ULCN-authentication on our SFTP portal. After connecting, you can access your home-directory and shared

More information

USER MANUAL. Managed Switch MPEGS24

USER MANUAL. Managed Switch MPEGS24 USER MANUAL Managed Switch MPEGS24 Chapter 1 Product Introduction 1.2 Features Supports 24 10/100/1000Mbps Gigabit Ethernet ports and 4 mini-gbic/sfp sots IEEE 802.3af/at PoE compiant to simpify depoyment

More information

DVR-4HD. User manual. Vehicle Drive Recorder. with Speed Camera Detection EN 1

DVR-4HD. User manual. Vehicle Drive Recorder. with Speed Camera Detection EN 1 DVR-4HD Vehice Drive Recorder with Speed Camera Detection User manua EN 1 Contents About this Guide 4 FCC Statement Prohibition of co-ocation Important note WEEE Notice CE Reguatory Notice Battery warning

More information

Investintech.com Inc. Software Development Kit: PDFtoImage Function Library User s Guide

Investintech.com Inc. Software Development Kit: PDFtoImage Function Library User s Guide Investintech.com Inc. Software Development Kit: PDFtoImage Function Library User s Guide Novemebr 6, 2007 http://www.investintech.com Copyright 2007 Investintech.com, Inc. All rights reserved Adobe is

More information

Hands-free system (for cellular phone)

Hands-free system (for cellular phone) Hands-free system (for ceuar phone) With navigation system Owners of modes equipped with a navigation system shoud refer to the Navigation System Owner s Manua. Without navigation system This system supports

More information

Mobile App Recommendation: Maximize the Total App Downloads

Mobile App Recommendation: Maximize the Total App Downloads Mobie App Recommendation: Maximize the Tota App Downoads Zhuohua Chen Schoo of Economics and Management Tsinghua University chenzhh3.12@sem.tsinghua.edu.cn Yinghui (Catherine) Yang Graduate Schoo of Management

More information

SA2100X-UG001 SA2100. User Guide

SA2100X-UG001 SA2100. User Guide SA2100X-UG001 SA2100 User Guide Version 2.0 August 7,2015 INSEEGO COPYRIGHT STATEMENT 2015 Inseego Corporation. A rights reserved. The information contained in this document is subject to change without

More information

l A set is a collection of objects of the same l {6,9,11,-5} and {11,9,6,-5} are equivalent. l There is no first element, and no successor of 9.

l A set is a collection of objects of the same l {6,9,11,-5} and {11,9,6,-5} are equivalent. l There is no first element, and no successor of 9. Sets & Hash Tabes Week 13 Weiss: chapter 20 CS 5301 Spring 2018 What are sets? A set is a coection of objects of the same type that has the foowing two properties: - there are no dupicates in the coection

More information

3GPP TS V7.1.0 ( )

3GPP TS V7.1.0 ( ) TS 29.199-7 V7.1.0 (2006-12) Technica Specification 3rd Generation Partnership Project; Technica Specification Group Core Network and Terminas; Open Service Access (OSA); Paray X Web Services; Part 7:

More information

Client Proxy interface reference

Client Proxy interface reference Reference Guide McAfee Client Proxy 2.3.2 Client Proxy interface reference These tables provide information about the settings found in the Client Proxy UI. Policy Catalog On the McAfee Client Proxy page

More information

Straight-line code (or IPO: Input-Process-Output) If/else & switch. Relational Expressions. Decisions. Sections 4.1-6, , 4.

Straight-line code (or IPO: Input-Process-Output) If/else & switch. Relational Expressions. Decisions. Sections 4.1-6, , 4. If/ese & switch Unit 3 Sections 4.1-6, 4.8-12, 4.14-15 CS 1428 Spring 2018 Ji Seaman Straight-ine code (or IPO: Input-Process-Output) So far a of our programs have foowed this basic format: Input some

More information

PLC11 Module Programming Manual

PLC11 Module Programming Manual PLC11 Modue Programming Manua Frequency Inverter Series: CFW-11 Version: 1.0X Language: Engish Document: 10000118422 / 00 05/2008 Summary 1 SAFETY INSTRUCTIONS...6 1.1 SAFETY WARNINGS IN THE MANUAL...

More information

Manual Ftp Windows 7 Server Configure Secure

Manual Ftp Windows 7 Server Configure Secure Manual Ftp Windows 7 Server Configure Secure File & Windows Explorer can handle connections to FTP servers. Books Hardware Security Blog In this guide, we will show you how to use Windows Explorer and

More information

l A program is a set of instructions that the l It must be translated l Variable: portion of memory that stores a value char

l A program is a set of instructions that the l It must be translated l Variable: portion of memory that stores a value char Week 1 Operators, Data Types & I/O Gaddis: Chapters 1, 2, 3 CS 5301 Fa 2018 Ji Seaman Programming A program is a set of instructions that the computer foows to perform a task It must be transated from

More information

The most up-to-date drivers and manuals are available from the Oki Data Americas web site:

The most up-to-date drivers and manuals are available from the Oki Data Americas web site: PREFACE Every effort has been made to ensure that the information in this document is compete, accurate, and up-to-date. The manufacturer assumes no responsibiity for the resuts of errors beyond its contro.

More information

KC Web API Programmer Reference

KC Web API Programmer Reference KC Web API Programmer Reference API Version 1.0 Knowledge Center version 4.2 November 2012 Copyright Cognition Corporation, 2012 All Rights Reserved This document, as well as the software described in

More information

DocuCentre-V 5070 / DocuCentre-V 5070 / Versatile performer that elevates your business.

DocuCentre-V 5070 / DocuCentre-V 5070 / Versatile performer that elevates your business. DocuCentre-V 5070 / 4070 DocuCentre-V 5070 / 4070 Versatie performer that eevates your business. A fexibe mutifunction device handy in any setting. Print and copy at a bazing 55 sheets/minute* 1. Scan

More information

NCH Software Express Accounts Accounting Software

NCH Software Express Accounts Accounting Software NCH Software Express Accounts Accounting Software This user guide has been created for use with Express Accounts Accounting Software Version 5.xx NCH Software Technica Support If you have difficuties using

More information

Thermal Mini Printer User Instructions

Thermal Mini Printer User Instructions CP103 Therma Mini Printer User Instructions AWT 35-501163 Issue AA Breckne is a trademark of the Iinois Too Works group of companies whose utimate parent company is Iinois Too Works Inc ( Iinois Too Works

More information

Modelling and Performance Evaluation of Router Transparent Web cache Mode

Modelling and Performance Evaluation of Router Transparent Web cache Mode Emad Hassan A-Hemiary IJCSET Juy 2012 Vo 2, Issue 7,1316-1320 Modeing and Performance Evauation of Transparent cache Mode Emad Hassan A-Hemiary Network Engineering Department, Coege of Information Engineering,

More information

Insert the power cord into the AC input socket of your projector, as shown in Figure 1. Connect the other end of the power cord to an AC outlet.

Insert the power cord into the AC input socket of your projector, as shown in Figure 1. Connect the other end of the power cord to an AC outlet. Getting Started This chapter wi expain the set-up and connection procedures for your projector, incuding information pertaining to basic adjustments and interfacing with periphera equipment. Powering Up

More information

Moving data to the cloud using the MoveToCloud script

Moving data to the cloud using the MoveToCloud script What this tutorial is about IBM dashdb's movetocloud script provides an easy way of getting your data to the cloud in either SoftLayer Swift object storage or Amazon S3. The script is ideal for uploading

More information

Contents Presentation... 1 Pack... 2 Connections... 3 Instaation from the CD-ROM... 4 Instaation by Ethernet interface... 6 Instaation by USB interfac

Contents Presentation... 1 Pack... 2 Connections... 3 Instaation from the CD-ROM... 4 Instaation by Ethernet interface... 6 Instaation by USB interfac SAGEM F@st TM 1201 Quick Instaation Guide Contents Presentation... 1 Pack... 2 Connections... 3 Instaation from the CD-ROM... 4 Instaation by Ethernet interface... 6 Instaation by USB interface... 7 Instaation

More information

WebDAV. Overview. File Permissions and Management. Authentication Methods

WebDAV. Overview. File Permissions and Management. Authentication Methods WebDAV Overview WebDAV integration provides access to the file system on the staging server similar to FTP/SFTP and can be used in lieu of FTP/SFTP. WebDAV (Web Distributed Authoring and Versioning) is

More information

Outline. Parallel Numerical Algorithms. Forward Substitution. Triangular Matrices. Solving Triangular Systems. Back Substitution. Parallel Algorithm

Outline. Parallel Numerical Algorithms. Forward Substitution. Triangular Matrices. Solving Triangular Systems. Back Substitution. Parallel Algorithm Outine Parae Numerica Agorithms Chapter 8 Prof. Michae T. Heath Department of Computer Science University of Iinois at Urbana-Champaign CS 554 / CSE 512 1 2 3 4 Trianguar Matrices Michae T. Heath Parae

More information

Eaton Advanced Enclosure Power Distribution Unit (epdu ) Troubleshooting Guide

Eaton Advanced Enclosure Power Distribution Unit (epdu ) Troubleshooting Guide Eaton Advanced Encosure Power Distribution Unit (epdu ) Troubeshooting Guide Eaton and epdu are registered trademarks of Eaton Corporation or its subsidiaries and affiiates. Googe Chrome is a trademark

More information

Ftp Command Line Manual Windows User Password

Ftp Command Line Manual Windows User Password Ftp Command Line Manual Windows User Password SSH Guide SFTP on Mac OS X SFTP on Windows The most straight forward way to use SFTP is through the command line. a command line, you can alternately use an

More information

Automated Vehicle Weighing System User Instructions

Automated Vehicle Weighing System User Instructions AVS-7 Automated Vehice Weighing System User Instructions AWT 35-500350 Issue AA June 2009 Avery Weigh-Tronix, LLC 2009. A rights reserved. No part of this pubication may be reproduced, stored in an eectronic

More information

Ftp Command Line Manual Windows Username Password Linux

Ftp Command Line Manual Windows Username Password Linux Ftp Command Line Manual Windows Username Password Linux Midnight Commander is a console based full-screen text mode File Manager that allows you to copy, MC has many features which are useful for a user

More information

Amazon S3 Advanced Features. Amazon S3 Advanced Features. Amazon S3 Advanced Features 7/12/17. Prefixes and Delimiters.

Amazon S3 Advanced Features. Amazon S3 Advanced Features. Amazon S3 Advanced Features 7/12/17. Prefixes and Delimiters. Prefixes and Deimiters Organize and emuate hierarchica fie systems. e.g., ogs/2016/january/server42.og Used with IAM to set permissions, share, etc. Storage Casses S3 Standard high durabiity, high avaiabiity,

More information

A Design Method for Optimal Truss Structures with Certain Redundancy Based on Combinatorial Rigidity Theory

A Design Method for Optimal Truss Structures with Certain Redundancy Based on Combinatorial Rigidity Theory 0 th Word Congress on Structura and Mutidiscipinary Optimization May 9 -, 03, Orando, Forida, USA A Design Method for Optima Truss Structures with Certain Redundancy Based on Combinatoria Rigidity Theory

More information

Outerjoins, Constraints, Triggers

Outerjoins, Constraints, Triggers Outerjoins, Constraints, Triggers Lecture #13 Autumn, 2001 Fa, 2001, LRX #13 Outerjoins, Constraints, Triggers HUST,Wuhan,China 358 Outerjoin R S = R S with danging tupes padded with nus and incuded in

More information

AN EVOLUTIONARY APPROACH TO OPTIMIZATION OF A LAYOUT CHART

AN EVOLUTIONARY APPROACH TO OPTIMIZATION OF A LAYOUT CHART 13 AN EVOLUTIONARY APPROACH TO OPTIMIZATION OF A LAYOUT CHART Eva Vona University of Ostrava, 30th dubna st. 22, Ostrava, Czech Repubic e-mai: Eva.Vona@osu.cz Abstract: This artice presents the use of

More information

How to see what is happening inside your OpenStack using Elastic Stack and Prometheus

How to see what is happening inside your OpenStack using Elastic Stack and Prometheus How to see what is happening inside your OpenStack using Eastic Stack and Prometheus Introduction & Agenda About me - Csaba Patyi (csaba@componentsofteu) - Consutant and Instuctor at Component Soft Ltd

More information

Hour 3: The Network Access Layer Page 1 of 10. Discuss how TCP/IP s Network Access layer relates to the OSI networking model

Hour 3: The Network Access Layer Page 1 of 10. Discuss how TCP/IP s Network Access layer relates to the OSI networking model Hour 3: The Network Access Layer Page 1 of 10 Hour 3: The Network Access Layer At the base of the TCP/IP protoco stack is the Network Access ayer, the coection of services and specifications that provide

More information

Chapter 3: KDE Page 1 of 31. Put icons on the desktop to mount and unmount removable disks, such as floppies.

Chapter 3: KDE Page 1 of 31. Put icons on the desktop to mount and unmount removable disks, such as floppies. Chapter 3: KDE Page 1 of 31 Chapter 3: KDE In This Chapter What Is KDE? Instaing KDE Seecting KDE Basic Desktop Eements Running Programs Stopping KDE KDE Capabiities Configuring KDE with the Contro Center

More information