www.delorie.com/djgpp/doc/libc-2.01/libc_366.html   search  
Go to the first, previous, next, last section, table of contents.


_go32_dpmi_free_dos_memory

Syntax

#include <dpmi.h>

int _go32_dpmi_free_dos_memory(_go32_dpmi_seginfo *info);

Description

See section DPMI Overview

This function frees the conventional memory allocated by _go32_dpmi_allocate_real_mode_memory. You should pass it the same structure as was used to allocate it.

Return Value

Zero on success, nonzero on failure.

Example

_go32_dpmi_seginfo info;
info.size = 100;
_go32_dpmi_allocate_dos_memory(&info);
_go32_dpmi_free_dos_memory(&info);


Go to the first, previous, next, last section, table of contents.

  prev next   webmaster     delorie software   privacy  
  Copyright © 1997     Updated Apr 1997