Typographic errors fixed and a function name changed.
authorEmanuele Aliberti <ea@iol.it>
Mon, 7 Feb 2005 23:11:30 +0000 (23:11 +0000)
committerEmanuele Aliberti <ea@iol.it>
Mon, 7 Feb 2005 23:11:30 +0000 (23:11 +0000)
svn path=/trunk/; revision=13461

reactos/lib/smdll/execpgm.c
reactos/lib/smdll/readme.txt
reactos/lib/smdll/smdll.def

index f9a523b..c0d67e5 100644 (file)
@@ -12,7 +12,7 @@
 #include <string.h>
 
 NTSTATUS STDCALL
-SmExecPgm (HANDLE hSmApiPort, PUNICODE_STRING Pgm)
+SmExecuteProgram (HANDLE hSmApiPort, PUNICODE_STRING Pgm)
 {
   NTSTATUS         Status;
   SM_PORT_MESSAGE  SmReqMsg;
index 71261e8..af75bd8 100644 (file)
@@ -4,11 +4,11 @@ This is SMDLL: a helper library to talk to the ReactOS session manager (SM).
 
 It should be linked in the following components:
 
-a) the SM itself, because iy registers for managing native processes
+a) the SM itself, because it registers for managing native processes
    IMAGE_SUBSYSTEM_NATIVE;
 
 b) environment subsystem servers, because each one should register in
-   the SM its own subsystem (willing to manageg those processes);
+   the SM its own subsystem (willing to manage those processes);
 
 c) terminal emulators for optional subsystems, like posixw32 and os2w32,
    to ask the SM to start the optional subsystem server they need connect to;
index 0822d1a..0c2e91e 100644 (file)
@@ -2,4 +2,4 @@ LIBRARY SMDLL.DLL
 EXPORTS
 SmCompleteSession@12
 SmConnectApiPort@16
-SmExecPgm@8
\ No newline at end of file
+SmExecuteProgram@8