Alexandre Julliard | 5819953 | 1994-04-21 01:20:00 +0000 | [diff] [blame^] | 1 | /* |
| 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 | */ |
| 15 | int RegOpenKey(void) |
| 16 | { |
| 17 | printf("RegOpenKey : Empty Stub !!!\n"); |
| 18 | } |
| 19 | |
| 20 | /************************************************************************* |
| 21 | * RegCreateKey [SHELL.2] |
| 22 | */ |
| 23 | int RegCreateKey(void) |
| 24 | { |
| 25 | printf("RegCreateKey : Empty Stub !!!\n"); |
| 26 | } |
| 27 | |
| 28 | /************************************************************************* |
| 29 | * RegCloseKey [SHELL.3] |
| 30 | */ |
| 31 | int RegCloseKey(void) |
| 32 | { |
| 33 | printf("RegCloseKey : Empty Stub !!!\n"); |
| 34 | } |
| 35 | |
| 36 | /************************************************************************* |
| 37 | * RegDeleteKey [SHELL.4] |
| 38 | */ |
| 39 | int RegDeleteKey(void) |
| 40 | { |
| 41 | printf("RegDeleteKey : Empty Stub !!!\n"); |
| 42 | } |
| 43 | |
| 44 | |
| 45 | /************************************************************************* |
| 46 | * ShellExecute [SHELL.20] |
| 47 | */ |
| 48 | int ShellExecute(LPSTR ptr) |
| 49 | { |
| 50 | printf("ShellExecute : Empty Stub !!!\n"); |
| 51 | } |
| 52 | |
| 53 | |
| 54 | /************************************************************************* |
| 55 | * RegisterShellHook [SHELL.102] |
| 56 | */ |
| 57 | int RegisterShellHook(void *ptr) |
| 58 | { |
| 59 | printf("RegisterShellHook : Empty Stub !!!\n"); |
| 60 | } |
| 61 | |
| 62 | /************************************************************************* |
| 63 | * ShellHookProc [SHELL.103] |
| 64 | */ |
| 65 | int ShellHookProc(void) |
| 66 | { |
| 67 | printf("ShellHookProc : Empty Stub !!!\n"); |
| 68 | } |
| 69 | |
| 70 | |
| 71 | |