Records 1 to 7 of 7
Browse Category
» Application
» Arc » AVI » Bitmap » Brush » Caret » Character » Clipboard » Color » Compress » Console » Cryptographic » Currency » Cursor » Date/Time » DDE » Device » Display » DLL » Drives » Ellipse » File » Font » FTP » HotKey » Icon » ImageList » Inet » INI-Files » Internet » Joystick » Keyboard » Memory » Menu » MIDI » Network » Objects » Pen » Picture » Polygon » Ports » Printer » Process » Rectangle » Registry » ScrollBar » Sound » Strings » System » Tape » Text » Timer » Triangle » Wait » Window |
7 Memory API Function
Sort: Most Viewed | Highest Rated | A-Z | Z-A
FillMemoryThe FillMemory function fills a block of memory with a specified value....Hits: 2681 Rating: (3.03) votes 582
GlobalUnlockGlobalUnlock decrements the lock count of a moveable memory block by one. The memory block is locked if its lock count is greater than zero; it is considered unlocked if its lock count is zero. A moveable memory block cannot be moved or discarded while it is locked. The function returns 1 if, after ...Hits: 1591 Rating: (3.00) votes 322
GlobalFreeGlobalFree frees up the resources associated with a memory block, including of course the memory itself. This function should be used to deallocate any memory blocks allocated by GlobalAlloc after you are finished using it. The function returns 0 if successful, or the value passed as hMem if an erro...Hits: 1899 Rating: (2.95) votes 723
GlobalLockGlobalLock locks a moveable block of memory into its current physical position. The block's internal lock count is incremented by one; a memory block is considered locked if its lock counter is greater than zero. Memory blocks cannot be moved or discarded while locked. The function returns a pointer...Hits: 1868 Rating: (2.96) votes 520
GlobalMemoryStatusThe GlobalMemoryStatus function retrieves information about current available memory. The function returns information about both physical and virtual memory. This function supersedes the GetFreeSpace function....Hits: 2568 Rating: (3.07) votes 566
GlobalAllocGlobalAlloc allocates a series of bytes in the computer's global memory. The memory can be used for any purpose necessary. The function's return value, if successful, depends on the flags specified in wFlags. It will either be a pointer to the block of allocated memory or a handle to the block of al...Hits: 2461 Rating: (3.05) votes 389
CopyMemoryCopyMemory copies a series of bytes from one location in the computer's memory to another. This function can be used to transfer data between any kinds of variables, arrays, data structures, or even abstract memory addresses. (To use arrays, reference the first element of the array.) Normally, the h...Hits: 4472 Rating: (2.93) votes 423
Records 1 to 7 of 7
|