testlist.c

来自「winNT技术操作系统,国外开放的原代码和LIUX一样」· C语言 代码 · 共 30 行

C
30
字号
/* Automatically generated file; DO NOT EDIT!! */

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

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

extern void func_crypt(void);
extern void func_crypt_lmhash(void);
extern void func_crypt_md4(void);
extern void func_crypt_md5(void);
extern void func_crypt_sha(void);
extern void func_lsa(void);
extern void func_registry(void);
extern void func_security(void);

const struct test winetest_testlist[] =
{
/*    { "crypt", func_crypt },
    { "crypt_lmhash", func_crypt_lmhash },
    { "crypt_md4", func_crypt_md4 },
    { "crypt_md5", func_crypt_md5 },
    { "crypt_sha", func_crypt_sha },
    { "lsa", func_lsa },
*/    { "registry", func_registry },
    { "security", func_security },
    { 0, 0 }
};

⌨️ 快捷键说明

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