34 lines
427 B
C
34 lines
427 B
C
|
/*++
|
||
|
|
||
|
Microsoft Windows
|
||
|
Copyright (C) Microsoft Corporation, 1981 - 1999
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
errorcodes.h
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Rahul Thombre (RahulTh) 4/30/1998
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
4/30/1998 RahulTh
|
||
|
|
||
|
Created this module.
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#ifndef __ERRORCODES_H__
|
||
|
#define __ERRORCODES_H__
|
||
|
|
||
|
#define errIRFTP_NODEVICE -1
|
||
|
#define errIRFTP_SELECTIONCANCELLED -2
|
||
|
#define errIRFTP_MULTDEVICES -3
|
||
|
|
||
|
#endif //__ERRORCODES_H__
|