home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Troubleshooting Netware Systems
/
CSTRIAL0196.BIN
/
attach
/
msj
/
v10n04
/
multilin.exe
/
TRANSLAT.H
< prev
Wrap
C/C++ Source or Header
|
1995-04-01
|
1KB
|
49 lines
// translat.h : header file
//
/////////////////////
// Struc for use by FindTranslationsOf and EnumResTransProc
typedef struct _tagLBData
{
HWND hWnd; // Handle to window/dlg box containing the list box
int nListBox; // ID of the list box to fill
DWORD dwErrCode; // Reason for failure of EnumResLangProc
} LBDATA, * PLBDATA;
#define NAMESTART 12 // Offset to file name in list box item string
/////////////////////////////////////////////////////////////////////////////
// CTranslations dialog
class CTranslations : public CDialog
{
// Construction
public:
CTranslations(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CTranslations)
enum { IDD = IDD_TRANSLATIONS };
CString m_SysTrans;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CTranslations)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Additional member functions
DWORD FindTranslationsOf( LPCTSTR lpszType, LPCTSTR lpszName);
// Generated message map functions
//{{AFX_MSG(CTranslations)
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};