Реферат: Системне програмне забезпечення С
len=strlen(buf2);
if(len)
{
dc.TextOut(20,210,"ListBox2:");
dc.TextOut(100,210,buf2,len);
}
len=strlen(str);
if(len)
{
dc.TextOut(20,240,"Edit:");
dc.TextOut(100,240,str,len);
}
}
class CPashaApp : public CWinApp
{
public:
CPashaApp() {};
virtual BOOL InitInstance();
};
BOOL CPashaApp::InitInstance()
{
m_pMainWnd= new CPashaWnd();
m_pMainWnd->ShowWindow(m_nCmdShow);
m_pMainWnd->UpdateWindow();
return TRUE;
}
CPashaApp PashaApp;
Додаток 2.
Proba.rc
#include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS