File: README.WIN

package info (click to toggle)
libcgicc 3.2.19-0.2
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 9,996 kB
  • ctags: 922
  • sloc: cpp: 5,023; sh: 4,438; makefile: 166; sed: 1
file content (20 lines) | stat: -rw-r--r-- 832 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
README for using GNU cgicc on Windows
=====================================

The win/ subdirectory contains Microsoft Visual C++ 6.0 workspace and
project files for the cgicc library and test and example applications.


A note about C4251
==================

Please note that when compiling the sample applications, you will
receive several warnings (C4251: 'identifier' : class 'type' needs to
have dll-interface to be used by clients of class 'type2').  This
occurs because cgicc's classes and functions are exported using the
__declspec method.  Several of cgicc's functions return the Standard
Template Library class 'string', which is exported in a .DEF file.  At
compile time, the compiler cannot know whether the STL class string is
exported, since cgicc does not import the .DEF file.
These warnings may be safely ignored.