|
Draws a bitmap in the specified position.
-
Parameters:
-
lib_index
|
is the index of a *.pic file in the "filer.exe" file list (the first element has a 0 index) |
frame
|
is the index of a bitmap frame in a *.pic file (the first frame has a 0 index) |
x
|
is the x-coordinate of a bitmap |
y
|
is the y-coordinate of a bitmap |
mode
|
must be one of the following: BM_NORMAL, BM_INVERSE, BM_FLIP_X, BM_FLIP_Y |
-
Returns:
-
None
#include <cybiko.h>
...
draw_lib( 0, 0, 10, 10, BM_NORMAL );
...
-
See also:
-
BM_NORMAL, BM_INVERSE, BM_FLIP_X, BM_FLIP_Y.
|