⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testlist.c

📁 winNT技术操作系统,国外开放的原代码和LIUX一样
💻 C
字号:
/* Automatically generated file; DO NOT EDIT!! */

/* stdarg.h is needed for Winelib */
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include "windef.h"
#include "winbase.h"

struct test
{
    const char *name;
    void (*func)(void);
};

extern void func_power(void);
extern void func_ros_init(void);

const struct test winetest_testlist[] =
{
	{ "power", func_power },
	{ "ros_init", func_ros_init },
	{ 0, 0 }
};

#define WINETEST_WANT_MAIN
#include "wine/test.h"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -