Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Forums
Favorite Tags
c++ x 7
c x 2
Member Avatar for Mini_The_Great

I used to program wuite often with C++, but then I stopped and now I have started again, ym problem is with a dll im making: DLL.H [code=cpp] #ifndef _DLL_H_ #define _DLL_H_ /* Begin User-Defined */ #define export extern "C" __declspec (dllexport) /* End User Defined */ #if BUILDING_DLL # …

Member Avatar for Mini_The_Great
0
3K
Member Avatar for Mini_The_Great

Heres my current code: [code=cpp] #include <windows.h> #include "menu.h" int win_w=640; int win_h=480; const char* win_cap="VMake"; LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); static char gszClassName[] = "db"; static HINSTANCE ghInstance = NULL; int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { WNDCLASSEX WndClass; HWND hwnd; MSG Msg; ghInstance …

Member Avatar for Ancient Dragon
0
139
Member Avatar for Mini_The_Great

How do you change curtan text in a text file? example: I have the user enter there name into data.txt and then have them enter there age in to data.txt. Then they grow up and they enter there age again, but instead of redoing the whole thing, I want it …

Member Avatar for Ancient Dragon
0
92
Member Avatar for Mini_The_Great

[code=C++] ambiguous overload for 'operator>>' in 'std::cin >> file' [/code]??? I'm going CRAZZZZYYYYY!!!!!!!!!!!!

Member Avatar for Ancient Dragon
0
63
Member Avatar for Mini_The_Great

Ok i just started C++ about 2 days ago and I have somthing not working and somthing I need to ask, hopfully somone can help me. Im making a dll to use with a gamemaking software called gamemaker that support using dll's. oh ya, im using Dev-C++ First, This is …

Member Avatar for Mini_The_Great
0
121