Files
vba10/SelectStatePane.xaml.h
2015-06-14 17:41:27 +00:00

31 lines
592 B
C++

//
// SelectStatePane.xaml.h
// Declaration of the SelectStatePane class
//
#pragma once
#include "SelectStatePane.g.h"
using namespace Windows::Foundation::Collections;
namespace VBA10
{
[Windows::Foundation::Metadata::WebHostHidden]
public ref class SelectStatePane sealed
{
public:
SelectStatePane(int selectedSlot);
private:
bool initdone;
IVector<Platform::String ^> ^savestateVector;
void Init(void);
void savestateList_SelectionChanged(Platform::Object^ sender, Windows::UI::Xaml::Controls::SelectionChangedEventArgs^ e);
};
}