Changeset 856 for trunk/src/ole32/clsid.cpp
- Timestamp:
- Sep 7, 1999, 7:57:55 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ole32/clsid.cpp
r851 r856 1 /* 2 * 1 /* 2 * 3 3 * Project Odin Software License can be found in LICENSE.TXT 4 * 4 * 5 5 */ 6 /* 6 /* 7 7 * ClassID Manipulation. 8 * 8 * 9 9 * 1/7/99 10 * 10 * 11 11 * Copyright 1999 David J. Raison 12 * 12 * 13 13 * Some portions from Wine Implementation 14 14 * Copyright 1995 Martin von Loewis … … 86 86 memset(table, 0, 256); 87 87 88 for (i = 0; i < 10; i++) 88 for (i = 0; i < 10; i++) 89 89 { 90 90 table['0' + i] = i; 91 91 } 92 for (i = 0; i < 6; i++) 92 for (i = 0; i < 6; i++) 93 93 { 94 94 table['A' + i] = i+10; … … 120 120 s++; /* skip - */ 121 121 122 for (i = 0; i < 2; i++) 122 for (i = 0; i < 2; i++) 123 123 { 124 124 p[1-i] = table[*s]<<4 | table[*(s+1)]; … … 129 129 130 130 /* these are just sequential bytes */ 131 for (i = 0; i < 2; i++) 131 for (i = 0; i < 2; i++) 132 132 { 133 133 *p++ = table[*s]<<4 | table[*(s+1)]; … … 136 136 s++; /* skip - */ 137 137 138 for (i = 0; i < 6; i++) 138 for (i = 0; i < 6; i++) 139 139 { 140 140 *p++ = table[*s]<<4 | table[*(s+1)]; … … 158 158 // WINE_StringFromCLSID 159 159 // ---------------------------------------------------------------------- 160 HRESULT WIN E_StringFromCLSID(const CLSID *rclsid, LPSTR idstr)160 HRESULT WIN32API WINE_StringFromCLSID(const CLSID *rclsid, LPSTR idstr) 161 161 { 162 162 dprintf(("OLE32: WINE_StringFromCLSID"));
Note:
See TracChangeset
for help on using the changeset viewer.