delorie.com/djgpp/doc/libc/libc_435.html | search |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
#include <dpmi.h> int _go32_dpmi_free_dos_memory(_go32_dpmi_seginfo *info); |
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.
Zero on success, nonzero on failure.
ANSI/ISO C | No |
POSIX | No |
_go32_dpmi_seginfo info; info.size = 100; _go32_dpmi_allocate_dos_memory(&info); _go32_dpmi_free_dos_memory(&info); |
webmaster | delorie software privacy |
Copyright © 2004 | Updated Apr 2004 |