主页->库函数目录->文字输出相关函数->outtext

功能:
这个函数用于在当前位置输出字符串。

声明:
void outtext(
    LPCSTR textstring,
    PIMAGE pimg = NULL
);
void outtext(
    CHAR c,
    PIMAGE pimg = NULL
);
void outtext(
    LPCWSTR textstring,
    PIMAGE pimg = NULL
);
void outtext(
    WCHAR c,
    PIMAGE pimg = NULL
);
参数: textstring 要输出的字符串的指针。 c 要输出的字符。 返回值: (无) 示例:
// 输出字符串
char s[] = "Hello World";
outtext(s);
// 输出字符
char c = 'A';
outtext(c);
// 输出数值,先将数字格式化输出为字符串
char s[5];
sprintf(s, "%d", 1024);
outtext(s);
Free Web Hosting