Files
MXC_A59/app/double_pointer_halo/double_pointer_demo.h

28 lines
366 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef POINTER_DEMO_H
#define POINTER_DEMO_H
#ifdef __cplusplus
extern "C" {
#endif
// ¹âÔε×ͼaRGB8888
extern unsigned int* get_halo_image(void);
extern unsigned short* get_bk_image(void);
int double_pointer_halo_draw (void);
int double_pointer_halo_init (int width, int height);
int double_pointer_halo_exit (void);
#ifdef __cplusplus
}
#endif
#endif