All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sshtools.javardp.CacheBackend Maven / Gradle / Ivy

Go to download

Swing RDP component based on ProperJavaRDP with some modifications to allow multiple sessions within the same runtime, and to fix some bugs and inconsistencies with newer Windows versions.

The newest version!
package com.sshtools.javardp;

import java.io.IOException;

public interface CacheBackend {
	void start(State state);
	
	boolean init(int cache_id);

	boolean pstcache_put_bitmap(State state, int cache_id, int cache_idx, byte[] bitmap_id, int width, int height, int length,
			byte[] data) throws IOException;

	boolean IS_PERSISTENT(int id);

	void touchBitmap(int cache_id, int cache_idx, int stamp);

	int nextSeq();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy