creates image source as memory copy of file contents
| 1450 | |
| 1451 | /// creates image source as memory copy of file contents |
| 1452 | LVImageSourceRef LVCreateFileCopyImageSource( lString16 fname ) |
| 1453 | { |
| 1454 | return LVCreateStreamImageSource( LVCreateMemoryStream(fname) ); |
| 1455 | } |
| 1456 | |
| 1457 | /// creates image source as memory copy of stream contents |
| 1458 | LVImageSourceRef LVCreateStreamCopyImageSource( LVStreamRef stream ) |
no test coverage detected