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.
17 lines
369 B
17 lines
369 B
//
|
|
// update.h: Declares data, defines and struct types for twin creation
|
|
// module.
|
|
//
|
|
//
|
|
|
|
#ifndef __UPDATE_H__
|
|
#define __UPDATE_H__
|
|
|
|
// Flags for Upd_DoModal
|
|
#define UF_SELECTION 0x0001
|
|
#define UF_ALL 0x0002
|
|
|
|
int PUBLIC Upd_DoModal(HWND hwndOwner, CBS * pcbs, LPCTSTR pszList, UINT cFiles, UINT uFlags);
|
|
|
|
#endif // __UPDATE_H__
|
|
|