程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> VC中CreateJobObjecteng等API使用問題的終極解決方案!!

VC中CreateJobObjecteng等API使用問題的終極解決方案!!

編輯:.NET實例教程
error   C2065:   ''CreateJobObject''   :   undeclared   identifIEr
error   C2440:   ''initializing''   :   cannot   convert   from   ''int''   to   ''void   *''
                Conversion   from   integral   type   to   pointer   type   requires   reinterpret_cast,   C-style   cast   or   function-style   cast
error   C2065:   ''AssignProcessToJobObject''   :   undeclared   identifIEr
error   C2065:   ''TerminateJobObject''   :   undeclared   identifIEr


上面的報錯很經典吧,也許你就是搜索上面的內容搜到這裡來的。

下面我來告訴大家如何解決:

先來看看下面MSDN的定義

Requirements

  Windows NT/2000: Requires Windows 2000.
  Windows 95/98: Unsupported.
  Header: Declared in Winbase.h; include Windows.h.
  Library: Use Kernel32.lib.
  Unicode: Implemented as Unicode and ANSI versions on Windows 2000.


看到了嗎? 2K以後的系統才可以。Windows.h必須包含,kernel32.lib必須用

#include <stdafx.h>
#include <Windows.h>
#pragma comment(lib,"Kernel32.lib")

把上面的頭文件引用放在代碼的最上面,然後打開stdafx.h文件,在最上面加一行

#define _WIN32_WINNT 0x0500


然後最關鍵的一步!千萬別忘記!先全部保存,然後一定要在build裡選Rebuild All

做完了這些你再看一下,已經可以編譯通過了,當然如果你的代碼還有別的錯誤就另當別論了!


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved