testlist.c
来自「一个类似windows」· C语言 代码 · 共 73 行
C
73 行
/* Automatically generated file; DO NOT EDIT!! */
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include "windef.h"
#include "winbase.h"
#include <windows.h>
extern void func_alloc(void);
extern void func_atom(void);
extern void func_change(void);
extern void func_codepage(void);
extern void func_comm(void);
extern void func_console(void);
extern void func_directory(void);
extern void func_drive(void);
extern void func_environ(void);
extern void func_file(void);
extern void func_format_msg(void);
extern void func_heap(void);
extern void func_locale(void);
extern void func_module(void);
extern void func_mailslot(void);
extern void func_path(void);
extern void func_pipe(void);
extern void func_process(void);
extern void func_profile(void);
extern void func_sync(void);
extern void func_thread(void);
extern void func_time(void);
extern void func_timer(void);
extern void func_virtual(void);
struct test
{
const char *name;
void (*func)(void);
};
const struct test winetest_testlist[] =
{
{ "alloc", func_alloc },
{ "atom", func_atom },
{ "change", func_change },
{ "codepage", func_codepage },
{ "comm", func_comm },
{ "console", func_console },
{ "directory", func_directory },
{ "drive", func_drive },
{ "environ", func_environ },
{ "file", func_file },
{ "format_msg", func_format_msg },
{ "heap", func_heap },
{ "locale", func_locale },
{ "module", func_module },
{ "mailslot", func_mailslot },
{ "path", func_path },
{ "pipe", func_pipe },
{ "process", func_process },
{ "profile", func_profile },
{ "sync", func_sync },
{ "thread", func_thread },
{ "time", func_time },
{ "timer", func_timer },
{ "virtual", func_virtual },
{ 0, 0 }
};
#define WINETEST_WANT_MAIN
#include "wine/test.h"
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?