forked from dolphin-emu/dolphin
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			390 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			390 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright 2008 Dolphin Emulator Project
 | 
						|
// Licensed under GPLv2+
 | 
						|
// Refer to the license.txt file included.
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "Common/CommonTypes.h"
 | 
						|
 | 
						|
class AVIDump
 | 
						|
{
 | 
						|
private:
 | 
						|
	static bool CreateFile();
 | 
						|
	static void CloseFile();
 | 
						|
 | 
						|
public:
 | 
						|
	static bool Start(int w, int h);
 | 
						|
	static void AddFrame(const u8* data, int width, int height);
 | 
						|
	static void Stop();
 | 
						|
	static void DoState();
 | 
						|
};
 |