Category : OS/2 Files
Archive   : WPSTOOLS.ZIP
Filename : MODOBJ.C
usage:
modobj objid setupstring
By Ned Konz 3/14/92
*/
#include
#define INCL_WINWORKPLACE
#include
/*
HOBJECT APIENTRY WinCreateObject(PSZ pszClassName,
PSZ pszTitle,
PSZ pszSetupString,
PSZ pszLocation,
ULONG ulFlags );
#define CO_FAILIFEXISTS 1
#define CO_REPLACEIFEXISTS 2
#define CO_UPDATEIFEXISTS 4
BOOL APIENTRY WinSetObjectData(HOBJECT hObject,
PSZ pszSetupString);
BOOL APIENTRY WinDestroyObject(HOBJECT hObject);
HOBJECT APIENTRY WinQueryObject(PSZ pszObjectID);
*/
int main( int argc, char *argv[] )
{
HOBJECT hObject;
if (argc != 3) {
fputs("Usage: ", stderr);
fputs(argv[0], stderr);
fputs(" objid setupstring\n", stderr);
return 1;
}
hObject = WinQueryObject((PSZ)argv[1]);
if (hObject) {
return !WinSetObjectData(hObject, (PSZ)argv[2]);
} else {
fputs("Object ", stderr);
fputs(argv[1], stderr);
fputs(" Not found!\n", stderr);
return 2;
}
}
Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!
This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.
But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/