main.go [144:152]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	batchLock.Lock()
	defer batchLock.Unlock()

	// Just store this as a property on self?
	ptr := uintptr(unsafe.Pointer(self))
	info, ok := batchMgr[ptr]
	if !ok {
		setError(errors.New("VNCSession is already closed"))
		return nil
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



main.go [631:638]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		batchLock.Lock()
		defer batchLock.Unlock()

		ptr := uintptr(unsafe.Pointer(self))
		info, ok := batchMgr[ptr]
		if !ok {
			setError(errors.New("VNCSession is already closed"))
			return nil
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



