Changeset 1012 for trunk/src/olesvr32/olesvr32.cpp
- Timestamp:
- Sep 23, 1999, 11:38:06 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/olesvr32/olesvr32.cpp
r703 r1012 18 18 19 19 /****************************************************************************** 20 * OleRegisterServer 32[OLESVR32.2]20 * OleRegisterServer [OLESVR32.2] 21 21 */ 22 OLESTATUS WINAPI OleRegisterServer(LPCSTR svrname,LPOLESERVER olesvr,LHSERVER* hRet,HINSTANCE hinst,OLE_SERVER_USE osu) { 23 FIXME("(%s,%p,%p,%08x,%d): stub!\n",svrname,olesvr,hRet,hinst,osu); 22 OLESTATUS WINAPI OleRegisterServer(LPCSTR svrname,LPOLESERVER olesvr,LHSERVER* hRet,HINSTANCE hinst,OLE_SERVER_USE osu) 23 { 24 #ifdef DEBUG 25 dprintf(("OLESVR32: OleRegisterServer not implemented\n")); 26 #endif 24 27 *hRet=++OLE_current_handle; 25 28 return OLE_OK; … … 27 30 28 31 /****************************************************************************** 29 * OleRevokeServer32[OLESVR32.3]32 * OleRevokeServer [OLESVR32.3] 30 33 */ 31 34 OLESTATUS WINAPI OleRevokeServer(LHSERVER hServer) 32 35 { 33 FIXME("%ld - stub\n",hServer); 36 #ifdef DEBUG 37 dprintf(("OLESVR32: OleRevokeServer not implemented\n")); 38 #endif 34 39 return OLE_OK; 35 40 } 36 41 37 42 /****************************************************************************** 38 * OleBlockServer32[OLESVR32.4]43 * OleBlockServer [OLESVR32.4] 39 44 */ 40 45 OLESTATUS WINAPI OleBlockServer(LHSERVER hServer) 41 46 { 42 FIXME("(%ld): stub\n",hServer); 47 #ifdef DEBUG 48 dprintf(("OLESVR32: OleBlockServer not implemented\n")); 49 #endif 43 50 return OLE_OK; 44 51 } … … 46 53 47 54 /****************************************************************************** 48 * OleUnblockServer32[OLESVR32.5]55 * OleUnblockServer [OLESVR32.5] 49 56 */ 50 57 OLESTATUS WINAPI OleUnblockServer(LHSERVER hServer, BOOL *block) 51 58 { 52 FIXME("(%ld): stub\n",hServer); 53 /* no more blocked messages :) */ 59 #ifdef DEBUG 60 dprintf(("OLESVR32: OleUnblockServer not implemented\n")); 61 #endif 54 62 *block=FALSE; 55 63 return OLE_OK; … … 57 65 58 66 /****************************************************************************** 59 * OleRegisterServerDoc 32[OLESVR32.6]67 * OleRegisterServerDoc [OLESVR32.6] 60 68 */ 61 69 INT WINAPI OleRegisterServerDoc( LHSERVER hServer, LPCSTR docname, … … 63 71 LHSERVERDOC *hRet) 64 72 { 65 FIXME("(%ld,%s): stub\n", hServer, docname); 73 #ifdef DEBUG 74 dprintf(("OLESVR32: OleRegisterServerDoc not implemented\n")); 75 #endif 66 76 *hRet=++OLE_current_handle; 67 77 return OLE_OK; … … 69 79 70 80 /****************************************************************************** 71 * OleRevokeServerDoc32[OLESVR32.7]81 * OleRevokeServerDoc [OLESVR32.7] 72 82 */ 73 83 OLESTATUS WINAPI OleRevokeServerDoc(LHSERVERDOC hServerDoc) 74 84 { 75 FIXME("(%ld): stub\n",hServerDoc); 85 #ifdef DEBUG 86 dprintf(("OLESVR32: OleRevokeServerDoc not implemented\n")); 87 #endif 76 88 return OLE_OK; 77 89 } 78 90 79 91 /****************************************************************************** 80 * OleRenameServerDoc32 [OLESVR32.8] 81 * 92 * OleRenameServerDoc [OLESVR32.8] 82 93 */ 83 94 OLESTATUS WINAPI OleRenameServerDoc(LHSERVERDOC hDoc, LPCSTR newName) 84 95 { 85 FIXME("(%ld,%s): stub.\n",hDoc, newName); 96 #ifdef DEBUG 97 dprintf(("OLESVR32: OleRenameServerDoc not implemented\n")); 98 #endif 86 99 return OLE_OK; 87 100 } 88 101 89 102 /****************************************************************************** 90 * OleRevertServerDoc [OLESVR32.9] 91 * 103 * OleRevertServerDoc [OLESVR32.9] 92 104 */ 93 105 OLESTATUS WINAPI OleRevertServerDoc(LHSERVERDOC hDoc) 94 106 { 95 FIXME("(%ld): stub\n",hDoc); 107 #ifdef DEBUG 108 dprintf(("OLESVR32: OleRevertServerDoc not implemented\n")); 109 #endif 96 110 return OLE_OK; 97 111 } 98 112 99 113 /****************************************************************************** 100 * OleSavedServerDoc [OLESVR32.10] 101 * 114 * OleSavedServerDoc [OLESVR32.10] 102 115 */ 103 116 OLESTATUS WINAPI OleSavedServerDoc(LHSERVERDOC hDoc) 104 117 { 105 FIXME("(%ld): stub\n",hDoc); 118 #ifdef DEBUG 119 dprintf(("OLESVR32: OleSavedServerDoc not implemented\n")); 120 #endif 106 121 return OLE_OK; 107 122 } 108 123 109 124 /****************************************************************************** 110 * OleRevokeObject [OLESVR32.11] 111 * 125 * OleRevokeObject [OLESVR32.11] 112 126 */ 113 127 OLESTATUS WINAPI OleRevokeObject(LPOLECLIENT oClient) 114 128 { 115 FIXME("(%ld): stub\n",oClient); 129 #ifdef DEBUG 130 dprintf(("OLESVR32: OleRevokeObject not implemented\n")); 131 #endif 116 132 return OLE_OK; 117 133 } 118 134 119 135 /****************************************************************************** 120 * OleQueryServerVersion [OLESVR32.12] 121 * 136 * OleQueryServerVersion[OLESVR32.12] 122 137 */ 123 138 DWORD WINAPI OleQueryServerVersion(void) 124 139 { 140 #ifdef DEBUG 141 dprintf(("OLESVR32: OleQueryServerVersion not implemented\n")); 142 #endif 125 143 return OLE_OK; 126 144 }
Note:
See TracChangeset
for help on using the changeset viewer.