Tagged Questions
1
vote
1answer
41 views
getenv in Visual C++ 2012
I want to use a getenv function from C in my C++ project in Visual Studio 2012.
The code:
extern "C" System::SByte^ getenv(const System::SByte^ name);
and then in some function:
String^ h1 = ...
0
votes
2answers
55 views
Reading from .txt file using fscanf in C
My assignment is to take input from a txt file and read that into parts of a struct array, then manipulate it, but I'm having trouble with reading from the file.
my struct is as follows:
typedef ...
1
vote
1answer
61 views
Call C function from inline assembly VS2012 - segfault?
Well, I've read the questions that are similar to mine but I haven't been able to solve this problem yet. I've also checked this which could, obviously, solve my problem. But it didn't.
I have a C ...
0
votes
0answers
31 views
VS Solution with C# project dependant on C project, best pratice [duplicate]
I have two projects with the full source code, one in C# and the other in C in one VS 2012 solution. The C# code is calling the C .dll via PInvoke.
I set the dependency on the solution level to tell ...
1
vote
1answer
44 views
Unexpected Value Output When Not Using Visual Studio
I've been working on a program for my Algorithm Analysis class where I have to solve the Knapsack problem with Brute Force, greedy, dynamic, and branch and bound strategies. Everything works ...
-3
votes
0answers
38 views
syntax error in VS2012
In VS2012, I have following in functions.h. This function.h file contains a few C style functions. VS2012 reports 3 errors on the last line.
#include <wdm.h>
int GetSSDTFunctionAddr(int ...
-1
votes
1answer
79 views
Compiling C code into a .bin file in Visual Studio 2012 Express
I was wondering if there was a way to set the compiler to compile my code into a .bin file which only has the 1's and 0's, no hex code as in a .exe file. I want the code to run on the processor, not ...
0
votes
2answers
124 views
Trigger Event Handler when any TextBox's text has changed
I'm building a message of a very different format that will be sent every time a person's account information is created or updated. I'm generating the message from many text boxes in a form from ...
1
vote
1answer
73 views
VS2012 mixing C and Cpp, library clash
I am trying to combine some C and C++ code in a project, and before I had no issues with this, but I'm now trying out VS2012 for the first time and I get a lot of errors from a TR1 header that I ...
3
votes
1answer
217 views
Building a DLL for Windows using MinGW but without a dependency on msvcrt.dll
I am trying to build a DLL using MinGW for Windows. I know that by default building using MinGW introduces a dependency on msvcrt.dll that ships with Windows. However, I want my DLL not to have a ...
3
votes
1answer
85 views
Strange /fp Floating Point Model flag behavior
I was examining some code which uses the /fp:precise and /fp:fast flags.
According to the MSDN documentation for /fp:precise:
With /fp:precise on x86 processors, the compiler will perform ...
0
votes
1answer
61 views
conditionally skipping dll dependencies
I'm writing a Win8 desktop app to monitor bluetooth status (among other functionalities) using Visual Studio 2012. I've specified Bthprops.lib in the project properties--> additional dependencies. I ...
0
votes
1answer
55 views
visual studio command prompt is closing [closed]
i want to run visual studio(2010 or 2012) command prompt on windows8 x64. but when i click on that(C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat) opening for few seconds and ...
2
votes
2answers
58 views
Is `__value` a gcc extension, and if so, what does it do? Does it have a VC++ equivalent?
Title says it all.
I am trying to use some of the libraries from cygwin's gcc with visual studio's C++ compiler but the following code from C:\cygwin\usr\include\sys\_types.h does not compile:
...
0
votes
2answers
49 views
Visual Studios (2012 pro mainly) file location of defaults for <inherit from parent or PROJECT DEFUALTS>
I always add the _CRT_SECURE_NO_WARNINGS to all of my C/C++ projects in the Preprocessor Definition tab in the Project Properties. There is the drop-down for <edit> and <inherit from parent ...
0
votes
1answer
98 views
cannot convert parameter 2 from 'const char [14]' to 'LPCWSTR'
I am getting this error at below code
what is incorrect ?
Actually it is supposed to be C but at best visual studio offers empty c++ project
#include "windows.h"
int WINAPI WinMain (HINSTANCE ...
0
votes
1answer
105 views
c / c++ dll missing dependencies without VS2012 installed … with it its working fine
I made a c/c++ DLL compiled under /MT option.
It will be loaded by another program.
Now all this is working fine as long as I have the Visual Studio 2012 (Express or Professional, both is ok) ...
0
votes
1answer
95 views
Can't load ICON resource in VC++ 2012 Ultimate
I am having problem adding icon resource to C++ Win32 Project. I followed the steps in pictures down under but we I run program.exe there is no my icon in menu bar (only default icon). *.exe file has ...
0
votes
0answers
94 views
GDI+ Animation with Png
I have successfully been able to display a png image with the code below:
Graphics graphics(hdc);
Image image(pStream);
graphics.DrawImage(&image, posX,posY, image_width, image_height);
...
0
votes
1answer
120 views
GTK+ C compilation errors Visual Studio 2012
I am trying to compile a simple GTK+ C program in VS2012. After getting GTK+ to work in VS2012, I decided to try a simple program to see if it would compile and run correctly. I'm getting a few ...
0
votes
0answers
53 views
Cannot communicate with serial port
I am using VS 2012 on Windows 7 x64. I am trying to communicate with the serial port in order to read and write to it. I am using the following code:
#include <stdio.h>
#include <conio.h>
...
0
votes
1answer
60 views
Visual Studio 2012: LNK2028
Hey Guys I'm getting two errors and cannot figure out how to resolve, Here they are:
Error 1 error LNK2028: unresolved token (0A0003A0) "void __cdecl polygon(int,int,int,int,unsigned int)" ...
0
votes
1answer
111 views
Contact manager with c program by using structure different code
Now I having another problem with that, after I changed my coding as shown below, it still showing out the error. Inside the coding, there was no any red underline, therefore I can't find out where's ...
0
votes
2answers
112 views
Contact manager with c program by using structure
struct contact
{
char name[20],email[20];
int hpnum;
}add;
int option;
int main (void)
{
system("cls");
printf("==========Welcome to ...
0
votes
2answers
77 views
getchar() skips every other char in C
I have been having problems fully using getchar() for a while now in C. And in this case I am trying to read a line and put the char's of the line into an array. However upon assigning the getchar() ...
1
vote
0answers
90 views
Compile error: 'RtlCaptureStackBackTrace' undefined
I'm trying to add a simple backtrace function to a C project which is built with Visual Studio 2012, and for some reason it gives me this compile error on the call to CaptureStackBackTrace():
...
0
votes
0answers
106 views
xtgmath.h: error C2059 when converting project to VS 2012 from VS 2010
At my work I am in the process of migrating a project from VS 2010 Express to VS 2012 Professional. I get the following error in the xtgmath.h file when trying to compile it:
xtgmath.h(70): error ...
0
votes
2answers
60 views
Calling a function in C not producing a function
I am new to C and it is so far very, different. Nevertheless I am trying to call a function from the main function using scanf and a switch statement however I do not believe the function I call is ...
-2
votes
1answer
174 views
When using Visual Studios 2012 for coding in C++, how do you autocomplete code selected in IntelliSense?
When using IntelliSense, it would usually show up functions, members, and etc. in the dialog box. Usually at the very top of the dialog box, IntelliSense would automatically select the most relevent ...
0
votes
2answers
176 views
How can I compile/debug Visual Studio 2012 Win32 project with Direct8 dlls
I'm new to Win32.
error LNK2019: unresolved external symbol _DirectDrawCreateEx@16
referenced in function "int __cdecl DD_Init(int,int,int)"
(?DD_Init@@YAHHHH@Z)
showing when i trying to run ...
0
votes
2answers
68 views
Visual Studio 2012 C Access Code Error
I am working on a small homework program with C, and I encountered a very unusual issue. I was coding this in C using Visual Studio 2012. The program compiles without errors, and it also runs in cmd ...
0
votes
1answer
163 views
error C2011: 'timezone':'struct' type redefinition (postgres)
I'm trying to build a. dll file to extend the postgres server with C functions.
I'm using visual studio 2012 to build the dll, and PostgreSQL 9.2. I imported all directories postgres ...
0
votes
4answers
176 views
Code that compiles with gcc will not compile in visual studio 2012
I am very new to procedural programming, so I am not sure if my code is bad or if I am doing something wrong in Visual Studio.
So I have this bit of code that is supposed to print an integer, print ...
0
votes
1answer
273 views
Standard C/C++ library not installed in new installation of Visual Studio
I formatted my computer and I installed VS2012 release candidate first, then VS2010 Ultimate, and lastly VS2012 Professional from DreamSpark. Also, after installing VS2012, I uninstalled VS2010 and ...
0
votes
0answers
24 views
Compile code to multiple directories in Visual Studio?
I am trying to make a simple template for driver so that I can write drivers quickly, however, I was wondering if it's possible to compile code in different directories. For instance, I want to ...
4
votes
4answers
147 views
How to update entries in array automaticly before/at compile time or code initialization time?
Well, I have an abstract virtual machine ("PAWN") which is running from my code and the scripts can execute functions, those functions are registered to the script from the C code which gets executed ...
1
vote
1answer
113 views
Visual Studio open cmd.exe with Consolas
I have a program written in C and it's beeing developed under Visual Studio 2012.
My program uses characters not available in Raster fonts, so I changed cmd.exe font to Consolas and my characters (รก, ...
1
vote
1answer
256 views
visual studio express 2012 simple c program fatal error LNK1561: entry point must be defined
While compiling and linking the following simple test.c using: cl.exe test.c in windows 7 console:
#include "stdio.h"
#include "stdlib.h"
int main(int argc, char* args[]){
int i;
i=0;
...
0
votes
0answers
173 views
What should I know before reading the ToR source code [closed]
I am considering of learning C and C++ just so I can study ToR source code, and possibly step through it using an IDE. Since this a self-directed effort I want to make sure I craft my learning plan ...
5
votes
2answers
650 views
Valgrind: invalid read of size 4 -> sigsegv, works fine without valgrind and in visual studio
I have implemented a compression algorithm (using huffman coding) which uses a priority queue of nodes (a struct i defined). Now, when i just run the code in linux or in visual studio, everything ...
0
votes
2answers
125 views
Why am I getting an Unresolved External Symbol error while the typedef is present?
I am creating a converter for quaternions to euler angles, I have written this code:
//(...)
/*
* Converter Includes
*/
#include "EulerAngles.h"
//(...)
static cell AMX_NATIVE_CALL n_QuatToEuler( ...
1
vote
2answers
289 views
Load DLL at runtime
I'm using the CUDA Driver API in a project. When I execute the project in a PC that doesn't have a NVIDIA GPU, it gives "nvcuda.dll was not found".
The problem is: this DLL is only distributed with ...
3
votes
2answers
527 views
How to “simulate” C99 in Visual Studio for variables declaration
I'm using Visual Studio 2012 to develop simple Win32 C programs. I know that the VS compiler only supports C89, but I'd like to know if there is a way to override this limitation.
In particular I'd ...
2
votes
1answer
514 views
Zlib in Visual Studio 2012
I am following these instructions to test the zlibStat library with testzlib. When I try to build testzlib, it throws the following error in testzlib.c, Line: 167, Char:43:
IntelliSense: argument ...
2
votes
3answers
83 views
Making a Linked List
typedef struct{
char name[25];
int yearOfBirth;
int district;
char gender;
int age;
CitizenType *next;
}CitizenType;
When I try to make a Linked List in this format in ...
2
votes
1answer
167 views
Converting inline ASM to intrinsic for x64 igraph
I'm compiling from source the python extension IGRAPH for x64 instead of x86 which is available in the distro. I have gotten it all sorted out in VS 2012 and it compiles when I comment out as follows ...
4
votes
1answer
7k views
How to compile for Win XP with Visual Studio 2012?
First of all, sorry if you see any grammar mistake, english is not my native language.
Ok, so I'm using Visual Studio 2012 in Windows 7 x64 for programming and compiling. My app works fine there, but ...
0
votes
3answers
397 views
MultiByteToWideChar terminating output buffer with junk, but reporting no error. Why?
While developing a program the other day, I had to convert an ASCII string into a Unicode string. I'm working on Windows with Visual Studio 2012, by the way. I noticed some strange behaviour with the ...
1
vote
2answers
191 views
Can't compile C on windows 7 x64
I have visual studio 2012 ultimate and mingw installed on my pc.
However, when I try to compile any program (I have only tried a simple hello world program)
e.g when I use the visual studio cl ...
1
vote
3answers
714 views
Can I execute vs2012 compiled binaries on win2k3?
I am compiling C projects with vs2012 ultimate on win2k8r2 machine.
But I want to execute same binaries on win2k3 server.
can I do it with modified setting in vs2012?





