- Fix ui to properly re-init sample table - Fix ui to only adjust existing sliders - Actually load multi-layer kits - Play correct layer for multi-layer
		
			
				
	
	
		
			27 lines
		
	
	
		
			933 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			933 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* drmr_hydrogen.h
 | 
						|
 * LV2 DrMr plugin
 | 
						|
 * Copyright 2012 Nick Lanham <nick@afternight.org>
 | 
						|
 *
 | 
						|
 * Public License v3. source code is available at 
 | 
						|
 * <http://github.com/nicklan/drmr>
 | 
						|
 | 
						|
 * THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 | 
						|
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 | 
						|
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 | 
						|
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | 
						|
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 | 
						|
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 | 
						|
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
						|
 */
 | 
						|
 | 
						|
 | 
						|
#ifndef DRMR_HYDRO_H
 | 
						|
#define DRMR_HYDRO_H
 | 
						|
 | 
						|
kits* scan_kits();
 | 
						|
void free_samples(drmr_sample* samples, int num_samples);
 | 
						|
int load_sample(char* path,drmr_layer* layer);
 | 
						|
int load_hydrogen_kit(DrMr* drmr, char* path);
 | 
						|
 | 
						|
#endif // DRMR_HYDRO_H
 |