AxibugEmuOnline/virtuanessrc097-master/Recent.h

43 lines
1.5 KiB
C++
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// Recent File クラス
//
#ifndef __CRECENT_INCLUDED__
#define __CRECENT_INCLUDED__
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <string>
using namespace std;
#include "Pathlib.h"
#include "Registry.h"
class CRecent
{
public:
static LPCSTR GetName( INT nID );
static LPCSTR GetPath( INT nID );
static void UpdateMenu( HMENU hMenu );
static void Add( LPCSTR lpszPath );
static void Load();
static void Save();
protected:
enum { RECENT_MAX=10 };
static CHAR m_RecentName[RECENT_MAX][_MAX_PATH];
static CHAR m_RecentPath[RECENT_MAX][_MAX_PATH];
static CHAR m_TempPath[_MAX_PATH];
// Helper
static void MakeManuPath( LPSTR lpszPath );
private:
};
#endif // !__CRECENT_INCLUDED__