Changeset 114 in pacpusframework for trunk/include/Pacpus/PacpusTools/Win32ShMem.h


Ignore:
Timestamp:
06/25/13 10:55:43 (11 years ago)
Author:
Marek Kurdej
Message:

Minor: added pacpus namespace in Win32ShMem.
Ignored dll-interface warnings in MSVC (unimportant because concerns STL): C4251, C4275.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/Pacpus/PacpusTools/Win32ShMem.h

    r103 r114  
    2424/// Forward declaration of typedefs is impossible.
    2525typedef void * HANDLE;
     26
     27#ifdef _MSC_VER
     28#   pragma warning(push)
     29#   pragma warning(disable: 4275)
     30#endif // _MSC_VER
     31
     32namespace pacpus {
    2633
    2734/// Shared memory object for Windows.
     
    5865};
    5966
     67} // namespace pacpus
     68
     69#ifdef _MSC_VER
     70#   pragma warning(pop)
     71#endif // _MSC_VER
     72
    6073#endif // DEF_PACPUS_WIN32SHMEM_H
Note: See TracChangeset for help on using the changeset viewer.