C / C++ / MFC
|
|
 |

|
I am trying to find a list of ‘affected’ API in Windows 8.
Microsoft used to release a file called Win32Api.Csv that would summarize every function call changed in a new version of the OS.
I am looking for something similar for Windows 8.
I don't necessarily need the 'new functions' list, I have seen that already.
I am concerned we make function calls in our existing products that will be 'broken' in some manner in Windows 8. For example, we have already run into some FindWindow failures.
Sigh.... so many Windows OS versions, so little time …
|
|
|
|

|
Maybe you should look on Microsoft's Windows 8 web pages.
|
|
|
|

|
I'm working with a code that I found online. After I resolved all the errors I tried to run the program, but it keeps giving me an unhandled exception.
1>httpsink.obj : error LNK2001: unresolved external symbol _IID_IXMLHTTPRequest
1>httpsink.obj : error LNK2001: unresolved external symbol _CLSID_XMLHTTP30
1>uafxcw.lib(appcore.obj) : error LNK2001: unresolved external symbol ___wargv
1>uafxcw.lib(appcore.obj) : error LNK2001: unresolved external symbol ___argc
1>MSVCRT.lib(crtexew.obj) : error LNK2001: unresolved external symbol _WinMain@16
1>C:\Users\ABC\Documents\Visual Studio 2008\Projects\httpsink\Release\httpsink.exe : fatal error LNK1120: 5 unresolved externals
Any help is welcome.
|
|
|
|

|
Those are not exceptions, they are linker messages, telling you that you have some missing library references. The first two are references to the MSXML[^] library. If you do not have it installed then you need to download it using the foregoing link. The remaining three suggest that you don't have a WinMain()[^] function in your code. However, it may well be that the code is incomplete, and you should check with the person who wrote it.
|
|
|
|

|
See here.
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Show me a community that obeys the Ten Commandments and I'll show you a less crowded prison system." - Anonymous
|
|
|
|

|
I don't understand how to programming in MCF CPP, I would like to
build my own DB such as excel and word documents.
|
|
|
|
|

|
FranksLIC wrote: I don't understand how to programming in MCF CPP
I would start by googling "MFC Hello World", then locate a good book about MFC programming like this[^] one for example.
|
|
|
|

|
FranksLIC wrote: I would like to
build my own DB such as excel and word documents.
I do not want to burst your bubble, but you should give yourself a more modest initial goal.
Wanting to build your own DB, Excel or Word is too big a project even for advanced/expert programmers; those are quite complex softwares.
Start by learning the basics; there are TONS of samples and examples either here on CodeProject or even the MFC samples on MSDN are a good start (to learn the MFC framework).
Good luck.
Nihil obstat
|
|
|
|

|
Hope you mean MFC. I think first yo should understand what is MFC. Because it is wast library that wraps portions of the Windows API in C++ classes. When studying we must start from it's basic. If we got a good basic knowledge then we can develop anything through a programming language. So stduy well, understand well.
All the best.
|
|
|
|
 |
|
|
General
News
Suggestion
Question
Bug
Answer
Joke
Rant
Admin