This topic has not yet been rated - Rate this topic

Close callback function

Closes a resource. The PCLOSE_ROUTINE type defines a pointer to this function.

Syntax


VOID WINAPI Close(
  _In_  RESID ResourceId
);

typedef VOID (WINAPI *PCLOSE_ROUTINE)(
    _In_  RESID ResourceId
);

Parameters

ResourceId [in]

Resource identifier of the resource to close.

Return value

None. Call SetLastError to specify that an error has occurred.

Remarks

For effective implementation strategies of the Close entry-point function, see Implementing Close.

Examples

See Resource DLL Examples.

Requirements

Minimum supported client

None supported [desktop apps only]

Minimum supported server

Windows 2000 Server Advanced Server, Windows 2000 Server Datacenter [desktop apps only]

Header

ResApi.h

See also

Resource DLL Entry-Point Functions

 

 

Send comments about this topic to Microsoft

Build date: 11/28/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.