mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
14 lines
276 B
C
14 lines
276 B
C
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_GetProfileDirs(void);
|
|
extern void func_LoadUserProfile(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "GetProfileDirs", func_GetProfileDirs },
|
|
{ "LoadUserProfile", func_LoadUserProfile },
|
|
{ 0, 0 }
|
|
};
|