blob: f60d9ff17a385b182e2b214d94325084b956bfe6 [file] [log] [blame]
Alexandre Julliard58199531994-04-21 01:20:00 +00001/*
2 * Shell Library Functions
3 */
4
5#include <stdlib.h>
6#include <stdio.h>
7#include <string.h>
8#include <unistd.h>
9#include "windows.h"
10
11
12/*************************************************************************
13 * RegOpenKey [SHELL.1]
14 */
15int RegOpenKey(void)
16{
17 printf("RegOpenKey : Empty Stub !!!\n");
18}
19
20/*************************************************************************
21 * RegCreateKey [SHELL.2]
22 */
23int RegCreateKey(void)
24{
25 printf("RegCreateKey : Empty Stub !!!\n");
26}
27
28/*************************************************************************
29 * RegCloseKey [SHELL.3]
30 */
31int RegCloseKey(void)
32{
33 printf("RegCloseKey : Empty Stub !!!\n");
34}
35
36/*************************************************************************
37 * RegDeleteKey [SHELL.4]
38 */
39int RegDeleteKey(void)
40{
41 printf("RegDeleteKey : Empty Stub !!!\n");
42}
43
44
45/*************************************************************************
46 * ShellExecute [SHELL.20]
47 */
48int ShellExecute(LPSTR ptr)
49{
50 printf("ShellExecute : Empty Stub !!!\n");
51}
52
53
54/*************************************************************************
55 * RegisterShellHook [SHELL.102]
56 */
57int RegisterShellHook(void *ptr)
58{
59 printf("RegisterShellHook : Empty Stub !!!\n");
60}
61
62/*************************************************************************
63 * ShellHookProc [SHELL.103]
64 */
65int ShellHookProc(void)
66{
67 printf("ShellHookProc : Empty Stub !!!\n");
68}
69
70
71