Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 438 Bytes

sesmgr.c

File metadata and controls

16 lines (12 loc) · 438 Bytes
 
Sep 30, 2016
Sep 30, 2016
1
2
#include "os2native.h"
#include "sesmgr.h"
Sep 30, 2016
Sep 30, 2016
3
Oct 2, 2016
Oct 2, 2016
4
LX_NATIVE_MODULE_INIT()
Nov 2, 2016
Nov 2, 2016
5
LX_NATIVE_EXPORT(DosStartSession, 37)
Oct 2, 2016
Oct 2, 2016
6
LX_NATIVE_MODULE_INIT_END()
Nov 2, 2016
Nov 2, 2016
8
9
10
11
12
13
14
APIRET DosStartSession(PSTARTDATA psd, PULONG pidSession, PPID ppid)
{
TRACE_NATIVE("DosStartSession(%p, %p, %p)", psd, pidSession, ppid);
printf("'%s', '%s', '%s'\n", psd->PgmTitle, psd->PgmName, psd->IconFile);
return ERROR_NOT_ENOUGH_MEMORY;
} // DosStartSession
15
// end of sesmgr.c ...