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.
35 lines
765 B
35 lines
765 B
/*
|
|
* resstr.h - Common return code to string translation routines description.
|
|
*/
|
|
|
|
|
|
/* Prototypes
|
|
*************/
|
|
|
|
/* resstr.c */
|
|
|
|
#ifdef DEBUG
|
|
|
|
extern LPCTSTR GetINTString(int);
|
|
extern LPCTSTR GetULONGString(ULONG);
|
|
extern LPCTSTR GetBOOLString(BOOL);
|
|
extern LPCTSTR GetCOMPARISONRESULTString(COMPARISONRESULT);
|
|
|
|
#ifdef INC_OLE2
|
|
|
|
extern LPCTSTR GetHRESULTString(HRESULT);
|
|
|
|
#endif /* INC_OLE2 */
|
|
|
|
#ifdef __SYNCENG_H__
|
|
|
|
extern LPCTSTR GetTWINRESULTString(TWINRESULT);
|
|
extern LPCTSTR GetCREATERECLISTPROCMSGString(UINT);
|
|
extern LPCTSTR GetRECSTATUSPROCMSGString(UINT);
|
|
extern LPCTSTR GetRECNODESTATEString(RECNODESTATE);
|
|
extern LPCTSTR GetRECNODEACTIONString(RECNODEACTION);
|
|
|
|
#endif /* __SYNCENG_H__ */
|
|
|
|
#endif /* DEBUG */
|
|
|