예제 #1
0
파일: Theme.cs 프로젝트: NoaAka/P6
		//Note that this function results in syncronous callbacks and will only return when done.
		// It will be done when either: All sources have been enumerated, or if the called function returns 0.
		// Read elias.h or the manual for more information.
		public int EnumerateSources(SourceEnumerationCallback secb) {
			IntPtr user_data = new IntPtr();
			return elias_theme_enumerate_sources(this.Handle, secb, out user_data);
		}
예제 #2
0
파일: Theme.cs 프로젝트: NoaAka/P6
		private static extern int elias_theme_enumerate_sources(IntPtr theme, SourceEnumerationCallback secb, out IntPtr user_data);