PA_DisposeHandle

4D - Documentation   Français   English   German   4D Plugin API, Command Theme List   4D Plugin API, Command Alphabetical List   Back   Previous   Next

version 2003


PA_DisposeHandle (handle)

ParameterTypeDescription
handlePA_HandleThe handle to dispose

Description

The routine PA_DisposeHandle releases all storage allocated for handle, which becomes invalid.

handle is a PA_Handle allocated by PA_NewHandle.

Example

   Handle h;
   h = PA_NewHandle( 256 );
   if ( h )
   {
      /* do whatever you want with the handle */
      PA_DisposeHandle( h );
   }

See Also

PA_NewHandle.

Error Handling

Use PA_GetLastError to see if an error occurred (not a valid handle, etc.).


4D - Documentation   Français   English   German   4D Plugin API, Command Theme List   4D Plugin API, Command Alphabetical List   Back   Previous   Next