Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
613 B

#pragma once
#include "autorun.h"
#include "dataitem.h"
#include "util.h"
class CDataSource
{
public:
CDataItem m_data[MAX_OPTIONS];
int m_iItems;
RELVER m_Version;
CDataSource();
~CDataSource();
BOOL Init(LPSTR pszCommandLine); // command line arguments from invocation of setup.exe, will be passed to winnt32.exe
void SetWindow(HWND hwnd);
CDataItem & operator [] ( int i );
void Invoke( int i, HWND hwnd );
protected:
HWND m_hwndDlg;
const int *m_piScreen; //pointer to array of menu items on the screen
};