/*++ Copyright (c) 1991 Microsoft Corporation Module Name: FilClose.c Abstract: This file contains the RpcXlate code to handle the NetFile APIs. Author: John Rogers (JohnRo) 06-Sep-1991 Environment: Portable to any flat, 32-bit environment. (Uses Win32 typedefs.) Requires ANSI C extensions: slash-slash comments, long external names. Revision History: 06-Sep-1991 JohnRo Created. --*/ // These must be included first: #include // IN, DWORD, etc. #include // NET_API_STATUS, etc. // These may be included in any order: #include // API_ equates. #include // NetpAssert(). //#include // LPDESC. #include // REM16_, REM32_, REMSmb_ equates. #include // RxRemoteApi(). #include // My prototype(s). //#include // IF_DEBUG(). NET_API_STATUS RxNetFileClose ( IN LPTSTR UncServerName, IN DWORD FileId ) { NetpAssert(UncServerName != NULL); NetpAssert(*UncServerName != '\0'); return (RxRemoteApi( API_WFileClose, // API number UncServerName, REMSmb_NetFileClose_P, // parm desc NULL, // no data desc 16 NULL, // no data desc 32 NULL, // no data desc SMB NULL, // no aux desc 16 NULL, // no aux desc 32 NULL, // no aux desc SMB FALSE, // not a null session API // rest of API's arguments, in 32-bit LM2.x format: FileId )); } // RxNetFileClose