關於動態庫的幾個關鍵函式

2021-05-24 00:12:39 字數 438 閱讀 8715

1.dllgetclassobject 用於建立類廠物件

2.類廠物件定義個createinstance

3.cocreateinstance,客戶程式呼叫此函式,此函式內部呼叫dllgetclassobject建立類廠物件,然後呼叫類廠的createinstance建立com物件

4.dllregisterserver 用於註冊com元件到登錄檔,如果com元件沒有定義此函式或沒有引出此函式,使用regsvr32註冊這個元件時會出現找不到入口點

5.dllunregisterserver反註冊

6.dllregisterserver呼叫的registerserver需要用到hmodule,需要把dllmain引數的hmodule傳給它,否則,雖註冊成功,但在呼叫com組建時提示"找不到指定的程式"

7.已經註冊的dll,重新編譯生成了,只要位置不變,則不需要再次註冊

關於時區的幾個常用關鍵字

1.cst central standard time 中部標準時間 2.est eastern standard time 東部標準時間 3.suse linux中的時區問題 http blog.chinaunix.net u1 45510 showart 357761.html suse lin...

有關動態記憶體的幾個函式

1 malloc 申請動態記憶體 int p int malloc n sizeof int 申請n個int型 char p1 char malloc 10 sizeof char 申請10個char型 double p2 double malloc 10 sizeof double 申請10個do...

Json庫中的幾個函式

import json test 1 name 1 json.dumps test 1 將字典型別轉化為字串型別 print type test 1 print type name 1 test 2 name 2 json.loads test 2 將字串型別轉化為字典型別 print type t...