module.c #1

  • //
  • mainline/
  • guest/
  • ShadauxCat/
  • csbuild/
  • Mainline/
  • UnitTests/
  • OSX/
  • HelloLibraries/
  • src/
  • loadableModule/
  • module.c
  • View
  • Commits
  • Open Download .zip Download (155 B)
//
//  mul.cpp
//  
//
//  Created by Brandon on 11/5/14.
//
//

#include <stdio.h>


void DoWork()
{
	printf("... Doing work in a loadable module!\n");
}
# Change User Description Committed
#1 12416 ShadauxCat Integration from //guest/brandon_m_bare/csbuild/brandon_m_bare/...
into //guest/ShadauxCat/csbuild/Mainline/...
//guest/brandon_m_bare/csbuild/brandon_m_bare/UnitTests/OSX/HelloLibraries/src/loadableModule/module.c
#1 11833 brandon_m_bare UnitTest:
-- Added the OSX unit test, HelloLibraries. NOTE: This unit test should work for other PC-based platforms, but it's specifically OSX to show off the difference loadable modules and shared libraries (which are technically the same thing, but Apple makes a clear distinction between the two).