Lines Matching refs:Key
540 char Key[MAX_CLSID_LEN]; in RegisterMe() local
541 strcpy(Key, "CLSID\\"); in RegisterMe()
542 strcat(Key, clsid); in RegisterMe()
545 SetKeyAndValue(Key, NULL, MYNAME); in RegisterMe()
546 SetKeyAndValue(Key, "LocalServer32", module); in RegisterMe()
547 SetKeyAndValue(Key, "ProgID", MYPROGID); in RegisterMe()
548 SetKeyAndValue(Key, "VersionIndependentProgID", MYVIPROGID); in RegisterMe()
549 SetKeyAndValue(Key, "TypeLib", libid); in RegisterMe()
612 char Key[MAX_CLSID_LEN]; in UnregisterMe() local
613 strcpy(Key, "CLSID\\"); in UnregisterMe()
614 strcat(Key, clsid); in UnregisterMe()
617 RecursiveDeleteKey(HKEY_CLASSES_ROOT, Key); in UnregisterMe()